Prepare the YANG models for RESTCONF
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / lisp / IMapRequestResultHandler.java
index 5c8b7f8d28e4aadb3ffd771eb6d4c33ecd5b5c7a..c7a423493c9dad6c249f00a30a8d7953c5462fae 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Contextream, Inc. and others.  All rights reserved.
+ * Copyright (c) 2014 Contextream, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -7,10 +7,9 @@
  */
 package org.opendaylight.lispflowmapping.interfaces.lisp;
 
-import java.net.InetAddress;
-
-import org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.MapReply;
-import org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.MapRequest;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.MapReply;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.MapRequest;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.control.plane.rev150314.transportaddress.TransportAddress;
 
 /**
  * An interface for dealing with a map reply message.
@@ -18,5 +17,5 @@ import org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.MapRequest;
 public interface IMapRequestResultHandler {
     public void handleMapReply(MapReply mapReply);
 
-    public void handleNonProxyMapRequest(MapRequest mapRequest, InetAddress targetAddress);
+    public void handleNonProxyMapRequest(MapRequest mapRequest, TransportAddress transportAddress);
 }