RemoteDeviceDataBroker proxy
[netconf.git] / opendaylight / netconf / abstract-topology / src / main / java / org / opendaylight / netconf / topology / NodeManager.java
index b4b26a859a48adf21dfdafe006e158f00749e406..c8ca14d252a30038e470f82f03502cb5b618a8fe 100644 (file)
@@ -10,11 +10,13 @@ package org.opendaylight.netconf.topology;
 
 import akka.actor.TypedActor.Receiver;
 import com.google.common.annotations.Beta;
+import org.opendaylight.netconf.sal.connect.api.RemoteDeviceHandler;
+import org.opendaylight.netconf.sal.connect.netconf.listener.NetconfSessionPreferences;
 
 /**
  * Node manager that handles communication between node managers and delegates calls to the customizable NodeManagerCallback
  */
 @Beta
-public interface NodeManager extends InitialStateProvider, NodeListener, Receiver, RemoteNodeListener {
+public interface NodeManager extends InitialStateProvider, NodeListener, Receiver, RemoteNodeListener, RemoteDeviceHandler<NetconfSessionPreferences> {
 
 }