Specialize RemoteDevice to NetconfMessage
[netconf.git] / netconf / sal-netconf-connector / src / main / java / org / opendaylight / netconf / sal / connect / api / DeviceActionFactory.java
index 2c505e87cbcee48ec403c8f294f0edc8a93e6fc4..463b18927bfa2d57a8bbbdcc50e2f77665892903 100644 (file)
@@ -12,7 +12,6 @@ import org.opendaylight.netconf.api.NetconfMessage;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 
 public interface DeviceActionFactory {
-
     /**
      * Allows user to create DOMActionService for specific device.
      *
@@ -22,7 +21,7 @@ public interface DeviceActionFactory {
      * @return {@link DOMActionService} of specific device
      */
     default DOMActionService createDeviceAction(final MessageTransformer<NetconfMessage> messageTransformer,
-            final RemoteDeviceCommunicator<NetconfMessage> listener, final SchemaContext schemaContext) {
+            final RemoteDeviceCommunicator listener, final SchemaContext schemaContext) {
         return null;
     }
 }