OpenFLow plugin & SAL API documentation
[controller.git] / opendaylight / sal / connection / api / src / main / java / org / opendaylight / controller / sal / connection / IPluginInConnectionService.java
index 9bae1238b528094a58fbb2e29d6b8af90dc3cf07..f4e16fac54af4e72bd8f8ebc0392f3944f15e674 100644 (file)
@@ -14,16 +14,14 @@ import org.opendaylight.controller.sal.core.Node;
 import org.opendaylight.controller.sal.utils.Status;
 
 /**
- * @file IPluginInConnectionService.java
- *
- * @brief Connection interface to be implemented by protocol plugins
+ * The interface describes methods to be implemented by protocol plugins
  */
 public interface IPluginInConnectionService {
     /**
      * Disconnect a Node that is connected to this Controller.
      *
      * @param node
-     * @param flow
+     *            the given node {@link org.opendaylight.controller.sal.core.Node}
      */
     public Status disconnect(Node node);
 
@@ -46,6 +44,9 @@ public interface IPluginInConnectionService {
 
     /**
      * Node Disconnected from the node's master controller.
+     *
+     * @param node
+     *            the given node {@link org.opendaylight.controller.sal.core.Node}
      */
     public void notifyNodeDisconnectFromMaster(Node node);