Fixing warnings in the sal sub-project.
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / IContainer.java
index 5aeb5c8b2d29a004232f478b97e3266877a1a5d6..6370537762e9d071dbfd6ef44ae853cbb8d40cec 100644 (file)
@@ -64,4 +64,18 @@ public interface IContainer {
      * @return The array of Nodes that are part of the container
      */
     public Set<Node> getNodes();
+
+    /**
+     * Return the well known administrator role for this container
+     *
+     * @return The administrator role for this container
+     */
+    public String getContainerAdminRole();
+
+    /**
+     * Return the well known operator role for this container
+     *
+     * @return The operator role for this container
+     */
+    public String getContainerOperatorRole();
 }