Merge branch 'release-1.0.X' into develop
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / lisp / IMapResolverAsync.java
index fac3020031854138a3461437edf1fc9a1cc57747..97fbd1d1b6be38665d06a0da164d0d1f7d2d9198 100644 (file)
@@ -1,7 +1,17 @@
+/*
+ * 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,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.lispflowmapping.interfaces.lisp;
 
 import org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.MapRequest;
 
+/**
+ * The async map resolver interface for dealing with async map request calls.
+ */
 public interface IMapResolverAsync extends IGeneralMapResolver {
-    public void handleMapRequest(MapRequest request, IMapReplyHandler callback);
+    public void handleMapRequest(MapRequest request, IMapRequestResultHandler callback);
 }