Addressing a flow programming issues on controler fail-over scenario in a Clustered...
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / utils / INodeConnectorFactory.java
index 317976dc3e68fca821a44540c0ead4f01709a060..fd51a787aa2828e2fb766b902eb68b8a12cdb8de 100644 (file)
@@ -13,9 +13,7 @@ import org.opendaylight.controller.sal.core.Node;
 import org.opendaylight.controller.sal.core.NodeConnector;
 
 /**
- * @file   INodeFactory.java
- *
- * @brief  Define the interface to be called when looking up custom node types
+ * This interface defines the methods to be called when looking up custom node types
  *
  */
 
@@ -23,6 +21,15 @@ public interface INodeConnectorFactory {
     /**
      * Method to get custom NodeConnector types from protocol plugins
      *
+     * @param typeStr
+     *            {@Link
+     *            org.opendaylight.controller.sal.core.NodeConnector} type
+     *            string
+     * @param IDStr
+     *            {@Link
+     *            org.opendaylight.controller.sal.core.NodeConnector} ID string
+     * @return the custom {@Link
+     *         org.opendaylight.controller.sal.core.NodeConnector}
      */
     public NodeConnector fromStringNoNode(String typeStr, String IDStr,
             Node n);