RemoteDeviceDataBroker proxy
[netconf.git] / opendaylight / netconf / netconf-topology / src / test / java / org / opendaylight / netconf / topology / TestingTopologyDispatcher.java
index 7931bb8c392e7136744002269dd14583419cc663..28a1f97122f78d8917768382b598e9e87d99a638 100644 (file)
@@ -8,6 +8,8 @@
 
 package org.opendaylight.netconf.topology;
 
+import akka.actor.ActorContext;
+import akka.actor.ActorRef;
 import com.google.common.base.Preconditions;
 import com.google.common.util.concurrent.ListenableFuture;
 import com.google.common.util.concurrent.SettableFuture;
@@ -108,9 +110,13 @@ public class TestingTopologyDispatcher implements NetconfTopology{
     }
 
     @Override
-    public void registerMountPoint(NodeId nodeId) {
+    public void registerMountPoint(ActorContext context, NodeId nodeId) {
         LOG.debug("Registering mount point for node {}", nodeId.getValue());
+    }
 
+    @Override
+    public void registerMountPoint(ActorContext context, NodeId nodeId, ActorRef masterRef) {
+        LOG.debug("Registering mount point for node {}", nodeId.getValue());
     }
 
     @Override