Merge "Bug 509: Added In-memory datastore support for wildcarded change listeners"
[controller.git] / opendaylight / netconf / netconf-api / src / main / java / org / opendaylight / controller / netconf / api / NetconfOperationRouter.java
index 49ca0c010681b6f451d7bb19348b323b84affe21..dcd2ffad55e28518edd6d64bed944f8734db2187 100644 (file)
@@ -12,9 +12,8 @@ import org.w3c.dom.Document;
 
 public interface NetconfOperationRouter extends AutoCloseable {
 
-    Document onNetconfMessage(Document message) throws NetconfDocumentedException;
+    Document onNetconfMessage(Document message, NetconfSession session)
+            throws NetconfDocumentedException;
 
-    @Override
-    void close();
 
 }