Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-core / src / main / java / org / onap / aaf / auth / org / Executor.java
index a839ae7..48ac9dc 100644 (file)
 package org.onap.aaf.auth.org;
 
 public interface Executor {
-       // remove User from user/Role
-       // remove user from Admins
-       // if # of Owners > 1, remove User from Owner
-       // if # of Owners = 1, changeOwner to X  Remove Owner????
-       boolean hasPermission(String user, String ns, String type, String instance, String action); 
-       boolean inRole(String name);
-       
-       public String namespace() throws Exception;
-       public String id();
+    // remove User from user/Role
+    // remove user from Admins
+    // if # of Owners > 1, remove User from Owner
+    // if # of Owners = 1, changeOwner to X  Remove Owner????
+    boolean hasPermission(String user, String ns, String type, String instance, String action); 
+    boolean inRole(String name);
+    
+    public String namespace() throws Exception;
+    public String id();
 }