1
2
3
4
5
6
7
8 package org.opendaylight.lispflowmapping.interfaces.lisp;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.MapReply;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.MapRequest;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev151105.transport.address.TransportAddress;
13
14
15
16
17 public interface IMapRequestResultHandler {
18
19
20
21
22
23
24 void handleMapReply(MapReply mapReply);
25
26
27
28
29
30
31
32
33
34 void handleNonProxyMapRequest(MapRequest mapRequest, TransportAddress transportAddress);
35 }