Prepare netconf to support YANG 1.1 actions
[netconf.git] / netconf / callhome-provider / src / main / java / org / opendaylight / netconf / callhome / mount / BaseCallHomeTopology.java
index d4f9e132b8ed0429de94999b077db6dde98fab7c..2d174ea0ba3c115c58acb9137af3babc6203dd64 100644 (file)
@@ -15,6 +15,7 @@ import org.opendaylight.controller.config.threadpool.ThreadPool;
 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
 import org.opendaylight.netconf.client.NetconfClientDispatcher;
+import org.opendaylight.netconf.sal.connect.api.DeviceActionFactory;
 import org.opendaylight.netconf.topology.AbstractNetconfTopology;
 import org.opendaylight.netconf.topology.api.SchemaRepositoryProvider;
 
@@ -26,9 +27,10 @@ abstract class BaseCallHomeTopology extends AbstractNetconfTopology {
                          final SchemaRepositoryProvider schemaRepositoryProvider,
                          final DataBroker dataBroker,
                          final DOMMountPointService mountPointService,
-                         final AAAEncryptionService encryptionService) {
+                         final AAAEncryptionService encryptionService,
+                         final DeviceActionFactory deviceActionFactory) {
         super(topologyId, clientDispatcher, eventExecutor, keepaliveExecutor,
               processingExecutor, schemaRepositoryProvider, dataBroker, mountPointService,
-              encryptionService);
+              encryptionService, deviceActionFactory);
     }
 }