Migrate netconf to MD-SAL APIs
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / api / DeviceActionFactory.java
index e8df4d4dc8891a92ec2fe66c149512f079f256e5..2c505e87cbcee48ec403c8f294f0edc8a93e6fc4 100644 (file)
@@ -7,7 +7,7 @@
  */
 package org.opendaylight.netconf.sal.connect.api;
 
-import org.opendaylight.controller.md.sal.dom.api.DOMActionService;
+import org.opendaylight.mdsal.dom.api.DOMActionService;
 import org.opendaylight.netconf.api.NetconfMessage;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
@@ -21,8 +21,8 @@ public interface DeviceActionFactory {
      * @param schemaContext - schema context of device
      * @return {@link DOMActionService} of specific device
      */
-    default DOMActionService createDeviceAction(MessageTransformer<NetconfMessage> messageTransformer,
-            RemoteDeviceCommunicator<NetconfMessage> listener, SchemaContext schemaContext) {
+    default DOMActionService createDeviceAction(final MessageTransformer<NetconfMessage> messageTransformer,
+            final RemoteDeviceCommunicator<NetconfMessage> listener, final SchemaContext schemaContext) {
         return null;
     }
 }