Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / ListUsersInRole.java
index e49a6e9..301e150 100644 (file)
@@ -48,81 +48,81 @@ import aaf.v2_0.Users.User;
  *
  */
 public class ListUsersInRole extends Cmd {
-       private static final String HEADER="List Users in Roles of Namespace ";
-       
-       public ListUsersInRole(ListUsers parent) {
-               super(parent,"role", 
-                               new Param("ns-name",true)); 
-       }
+    private static final String HEADER="List Users in Roles of Namespace ";
+    
+    public ListUsersInRole(ListUsers parent) {
+        super(parent,"role", 
+                new Param("ns-name",true)); 
+    }
 
-       @Override
-       public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {
-               int idx = _idx;
-               final String ns=args[idx++];
-               final boolean detail = aafcli.isDetailed();
-               return same(new Retryable<Integer>() {
-                       @Override
-                       public Integer code(Rcli<?> client) throws CadiException, APIException {
-                               ((ListUsers)parent).report(HEADER,ns);
-                               Future<Nss> fn = client.read("/authz/nss/"+ns,getDF(Nss.class));
-                               if(fn.get(AAFcli.timeout())) {
-                                       if(fn.value!=null) {
-                                               Set<String> uset = detail?null:new HashSet<>();
-                                               for(Ns n : fn.value.getNs()) {
-                                                       Future<Roles> fr = client.read("/authz/roles/ns/"+n.getName(), getDF(Roles.class));
-                                                       if(fr.get(AAFcli.timeout())) {
-                                                               for(Role r : fr.value.getRole()) {
-                                                                       if(detail) {
-                                                                               ((ListUsers)parent).report(r.getName());
-                                                                       }
-                                                                       Future<Users> fus = client.read(
-                                                                                       "/authz/users/role/"+r.getName(), 
-                                                                                       getDF(Users.class)
-                                                                                       );
-                                                                       if(fus.get(AAFcli.timeout())) {
-                                                                               for(User u : fus.value.getUser()) {
-                                                                                       if(detail) {
-                                                                                               ((ListUsers)parent).report("  ",u);
-                                                                                       } else {
-                                                                                           uset.add(u.getId());
-                                                                                       }
-                                                                               }
-                                                                       } else if(fn.code()==404) {
-                                                                               return 200;
-                                                                       }
-                                                               }
-                                                       }
-                                               }
-                                               if(uset!=null) {
-                                                       for(String u : uset) {
-                                                               pw().print("  ");
-                                                               pw().println(u);
-                                                       }
-                                               }
-                                       }
-                               } else if(fn.code()==404) {
-                                       return 200;
-                               } else {        
-                                       error(fn);
-                               }
-                               return fn.code();
-                       }
-               });
-       }
+    @Override
+    public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {
+            int idx = _idx;
+        final String ns=args[idx++];
+        final boolean detail = aafcli.isDetailed();
+        return same(new Retryable<Integer>() {
+            @Override
+            public Integer code(Rcli<?> client) throws CadiException, APIException {
+                ((ListUsers)parent).report(HEADER,ns);
+                Future<Nss> fn = client.read("/authz/nss/"+ns,getDF(Nss.class));
+                if(fn.get(AAFcli.timeout())) {
+                    if(fn.value!=null) {
+                        Set<String> uset = detail?null:new HashSet<>();
+                        for(Ns n : fn.value.getNs()) {
+                            Future<Roles> fr = client.read("/authz/roles/ns/"+n.getName(), getDF(Roles.class));
+                            if(fr.get(AAFcli.timeout())) {
+                                for(Role r : fr.value.getRole()) {
+                                    if(detail) {
+                                        ((ListUsers)parent).report(r.getName());
+                                    }
+                                    Future<Users> fus = client.read(
+                                            "/authz/users/role/"+r.getName(), 
+                                            getDF(Users.class)
+                                            );
+                                    if(fus.get(AAFcli.timeout())) {
+                                        for(User u : fus.value.getUser()) {
+                                            if(detail) {
+                                                ((ListUsers)parent).report("  ",u);
+                                            } else {
+                                                uset.add(u.getId());
+                                            }
+                                        }
+                                    } else if(fn.code()==404) {
+                                        return 200;
+                                    }
+                                }
+                            }
+                        }
+                        if(uset!=null) {
+                            for(String u : uset) {
+                                pw().print("  ");
+                                pw().println(u);
+                            }
+                        }
+                    }
+                } else if(fn.code()==404) {
+                    return 200;
+                } else {    
+                    error(fn);
+                }
+                return fn.code();
+            }
+        });
+    }
 
-       @Override
-       public void detailedHelp(int _indent, StringBuilder sb) {
-               int indent = _indent;
-               detailLine(sb,indent,HEADER);
-               indent+=4;
-               detailLine(sb,indent,"Report Users associated with this Namespace's Roles");
-               sb.append('\n');
-               detailLine(sb,indent,"If \"set details=true\" is specified, then all roles are printed ");
-               detailLine(sb,indent,"with the associated users and expiration dates");
-               indent-=4;
-               api(sb,indent,HttpMethods.GET,"authz/nss/<ns>",Nss.class,true);
-               api(sb,indent,HttpMethods.GET,"authz/roles/ns/<ns>",Roles.class,false);
-               api(sb,indent,HttpMethods.GET,"authz/users/role/<ns>",Users.class,false);
-       }
+    @Override
+    public void detailedHelp(int _indent, StringBuilder sb) {
+            int indent = _indent;
+        detailLine(sb,indent,HEADER);
+        indent+=4;
+        detailLine(sb,indent,"Report Users associated with this Namespace's Roles");
+        sb.append('\n');
+        detailLine(sb,indent,"If \"set details=true\" is specified, then all roles are printed ");
+        detailLine(sb,indent,"with the associated users and expiration dates");
+        indent-=4;
+        api(sb,indent,HttpMethods.GET,"authz/nss/<ns>",Nss.class,true);
+        api(sb,indent,HttpMethods.GET,"authz/roles/ns/<ns>",Roles.class,false);
+        api(sb,indent,HttpMethods.GET,"authz/users/role/<ns>",Users.class,false);
+    }
 
 }