Added a generic API to return a list of configured switches that are not connected...
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / inventory / IPluginInInventoryService.java
index 5822731f26babd33bea1ea18d108fcf5be0a6f4c..4007dc86e78974d7d36dc7540b4a3fc044d48fdc 100644 (file)
@@ -10,6 +10,7 @@
 package org.opendaylight.controller.sal.inventory;
 
 import java.util.Map;
+import java.util.Set;
 import java.util.concurrent.ConcurrentMap;
 
 import org.opendaylight.controller.sal.core.Node;
@@ -36,4 +37,12 @@ public interface IPluginInInventoryService {
      */
     public ConcurrentMap<NodeConnector, Map<String, Property>> getNodeConnectorProps(
             Boolean refresh);
+
+    /**
+     * The method retrieves all the configured nodes that are not connected to
+     * the controller
+     *
+     * @return Set of {@link org.opendaylight.controller.sal.core.Node}
+     */
+    public Set<Node> getConfiguredNotConnectedNodes();
 }