Bug 8153: Enforce check-style rules for netconf - netconf-topology-singleton
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / api / RemoteDeviceConnector.java
index bb74b754b30a92ca236ba2401230947c1b0dffb0..4e9cc8924e4bfdcc384764449a6f4446808c84b8 100644 (file)
@@ -11,18 +11,18 @@ package org.opendaylight.netconf.topology.singleton.api;
 import akka.actor.ActorRef;
 
 /**
- * Provides API for connection odl (master) with device
+ * Provides API for connection odl (master) with device.
  */
 public interface RemoteDeviceConnector {
 
     /**
-     * Create device communicator and open device connection
+     * Create device communicator and open device connection.
      * @param masterActorRef master actor reference
      */
     void startRemoteDeviceConnection(ActorRef masterActorRef);
 
     /**
-     * Stop device communicator
+     * Stop device communicator.
      */
     void stopRemoteDeviceConnection();
 }