add documentation to the mapping service TELSDN-568: #close
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / lisp / IMapNotifyHandler.java
index a1043fd05adf5cb9e098771f965c365d22dc7d47..79eefe3b090db5d80b37046f433fb539a0e8ee50 100644 (file)
@@ -1,7 +1,17 @@
+/*
+ * Copyright (c) 2013 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.lispflowmapping.type.lisp.MapNotify;
+import org.opendaylight.yang.gen.v1.lispflowmapping.rev131031.MapNotify;
 
+/**
+ * An interface for dealing with a map notify message.
+ */
 public interface IMapNotifyHandler {
-    public void handleMapNotify(MapNotify notify);
+    public void handleMapNotify(MapNotify mapNotify);
 }