Container Manager to expose inContainerMode()
[controller.git] / opendaylight / containermanager / it.implementation / src / main / java / org / opendaylight / controller / containermanager / internal / ContainerManager.java
index 24ef0c08ef9d78a4f3410ded6f998af0281065d3..f2219e53b84506d11296e30783723e6acd03e877 100644 (file)
@@ -43,7 +43,7 @@ public class ContainerManager implements IContainerManager {
      * This is configuration world: container names (also the map key)
      * are maintained as they were configured by user, same case
      */
      * This is configuration world: container names (also the map key)
      * are maintained as they were configured by user, same case
      */
-    private Set<IContainerAware> iContainerAware = (Set<IContainerAware>) Collections
+    private Set<IContainerAware> iContainerAware = Collections
             .synchronizedSet(new HashSet<IContainerAware>());
     private Set<IContainerListener> iContainerListener = Collections
             .synchronizedSet(new HashSet<IContainerListener>());
             .synchronizedSet(new HashSet<IContainerAware>());
     private Set<IContainerListener> iContainerListener = Collections
             .synchronizedSet(new HashSet<IContainerListener>());
@@ -213,4 +213,10 @@ public class ContainerManager implements IContainerManager {
         return null;
     }
 
         return null;
     }
 
+    @Override
+    public boolean inContainerMode() {
+        // TODO Auto-generated method stub
+        return false;
+    }
+
 }
 }