Cleanup mappingservice.yangmodel
[lispflowmapping.git] / mappingservice / api / src / main / java / org / opendaylight / lispflowmapping / interfaces / lisp / IMapNotifyHandler.java
index 28281994850e099d2ce018f7ba004428282a75a3..abd130af67fad98e8cf0f86d196b022d0ab9056b 100644 (file)
@@ -1,7 +1,20 @@
+/*
+ * 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.MapNotify;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev150820.MapNotify;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev150820.MapRequest;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.proto.rev150820.lispaddress.LispAddressContainer;
 
+/**
+ * An interface for dealing with a map notify message.
+ */
 public interface IMapNotifyHandler {
     public void handleMapNotify(MapNotify mapNotify);
+    public void handleSMR(MapRequest mapRequest, LispAddressContainer subscriber);
 }