Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-gui / src / main / java / org / onap / aaf / auth / gui / pages / PermDetail.java
index 01c96a6..750f725 100644 (file)
@@ -58,103 +58,103 @@ import aaf.v2_0.Perms;
  *
  */
 public class PermDetail extends Page {
-       public static final String HREF = "/gui/permdetail";
-       public static final String NAME = "PermDetail";
-       private static final String BLANK = "";
+    public static final String HREF = "/gui/permdetail";
+    public static final String NAME = "PermDetail";
+    private static final String BLANK = "";
 
-       public PermDetail(final AAF_GUI gui, Page ... breadcrumbs) throws APIException, IOException {
-               super(gui.env, NAME, HREF, new String[] {"type","instance","action"},
-                               new BreadCrumbs(breadcrumbs),
-                               new Table<AAF_GUI,AuthzTrans>("Permission Details",gui.env.newTransNoAvg(),new Model(gui.env),"class=detail")
-                               );
-       }
+    public PermDetail(final AAF_GUI gui, Page ... breadcrumbs) throws APIException, IOException {
+        super(gui.env, NAME, HREF, new String[] {"type","instance","action"},
+                new BreadCrumbs(breadcrumbs),
+                new Table<AAF_GUI,AuthzTrans>("Permission Details",gui.env.newTransNoAvg(),new Model(gui.env),"class=detail")
+                );
+    }
 
-       /**
-        * Implement the table content for Permissions Detail
-        
-        * @author Jonathan
-        *
-        */
-       private static class Model extends TableData<AAF_GUI,AuthzTrans> {
-               private Slot type, instance, action;
-               public Model(AuthzEnv env) {
-                       type = env.slot(NAME+".type");
-                       instance = env.slot(NAME+".instance");
-                       action = env.slot(NAME+".action");
-               }
+    /**
+     * Implement the table content for Permissions Detail
+     * 
+     * @author Jonathan
+     *
+     */
+    private static class Model extends TableData<AAF_GUI,AuthzTrans> {
+        private Slot type, instance, action;
+        public Model(AuthzEnv env) {
+            type = env.slot(NAME+".type");
+            instance = env.slot(NAME+".instance");
+            action = env.slot(NAME+".action");
+        }
 
-               public Cells get(final AuthzTrans trans, final AAF_GUI gui) {
-                       final String pType = trans.get(type, null);
-                       final String pInstance = trans.get(instance, null);
-                       final String pAction = trans.get(action, null);
-                       Validator v = new Validator();
-                       v.permType(pType)
-                        .permInstance(pInstance)
-                        .permAction(pAction);
-                       
-                       if(v.err()) {
-                               trans.warn().printf("Error in PermDetail Request: %s", v.errs());
-                               return Cells.EMPTY;
-                       }
-                       final ArrayList<AbsCell[]> rv = new ArrayList<>();
-                       rv.add(new AbsCell[]{new TextCell("Type:"),new TextCell(pType)});
-                       rv.add(new AbsCell[]{new TextCell("Instance:"),new TextCell(pInstance)});
-                       rv.add(new AbsCell[]{new TextCell("Action:"),new TextCell(pAction)});
-                       try {
-                               gui.clientAsUser(trans.getUserPrincipal(), new Retryable<Void>() {
-                                       @Override
-                                       public Void code(Rcli<?> client)throws CadiException, ConnectException, APIException {
-                                               TimeTaken tt = trans.start("AAF Perm Details",Env.REMOTE);
-                                               try {
-                                                       Future<Perms> fp= client.read("/authz/perms/"+pType + '/' + pInstance + '/' + pAction,gui.getDF(Perms.class));
-                                       
-                                                       if(fp.get(AAF_GUI.TIMEOUT)) {
-                                                               tt.done();
-                                                               tt = trans.start("Load Data", Env.SUB);
-                                                               List<Perm> ps = fp.value.getPerm();
-                                                               if(!ps.isEmpty()) {
-                                                                       Perm perm = fp.value.getPerm().get(0);
-                                                                       String desc = (perm.getDescription()!=null?perm.getDescription():BLANK);
-                                                                       rv.add(new AbsCell[]{new TextCell("Description:"),new TextCell(desc)});
-                                                                       boolean first=true;
-                                                                       for(String r : perm.getRoles()) {
-                                                                               if(first){
-                                                                                       first=false;
-                                                                                       rv.add(new AbsCell[] {
-                                                                                                       new TextCell("Associated Roles:"),
-                                                                                                       new TextCell(r)
-                                                                                               });
-                                                                               } else {
-                                                                                       rv.add(new AbsCell[] {
-                                                                                               AbsCell.Null,
-                                                                                               new TextCell(r)
-                                                                                       });
-                                                                               }
-                                                                       }
-                                                               }
-                                                               String historyLink = PermHistory.HREF 
-                                                                               + "?type=" + pType + "&instance=" + pInstance + "&action=" + pAction;
-                                                               
-                                                               rv.add(new AbsCell[] {new RefCell("See History",historyLink,false)});
-                                                       } else {
-                                                               rv.add(new AbsCell[] {new TextCell(
-                                                                       fp.code()==HttpStatus.NOT_FOUND_404?
-                                                                               "*** Implicit Permission ***":
-                                                                               "*** Data Unavailable ***"
-                                                                               )});
-                                                       }
-                                               } finally {
-                                                       tt.done();
-                                               }
+        public Cells get(final AuthzTrans trans, final AAF_GUI gui) {
+            final String pType = trans.get(type, null);
+            final String pInstance = trans.get(instance, null);
+            final String pAction = trans.get(action, null);
+            Validator v = new Validator();
+            v.permType(pType)
+             .permInstance(pInstance)
+             .permAction(pAction);
+            
+            if(v.err()) {
+                trans.warn().printf("Error in PermDetail Request: %s", v.errs());
+                return Cells.EMPTY;
+            }
+            final ArrayList<AbsCell[]> rv = new ArrayList<>();
+            rv.add(new AbsCell[]{new TextCell("Type:"),new TextCell(pType)});
+            rv.add(new AbsCell[]{new TextCell("Instance:"),new TextCell(pInstance)});
+            rv.add(new AbsCell[]{new TextCell("Action:"),new TextCell(pAction)});
+            try {
+                gui.clientAsUser(trans.getUserPrincipal(), new Retryable<Void>() {
+                    @Override
+                    public Void code(Rcli<?> client)throws CadiException, ConnectException, APIException {
+                        TimeTaken tt = trans.start("AAF Perm Details",Env.REMOTE);
+                        try {
+                            Future<Perms> fp= client.read("/authz/perms/"+pType + '/' + pInstance + '/' + pAction,gui.getDF(Perms.class));
+                    
+                            if(fp.get(AAF_GUI.TIMEOUT)) {
+                                tt.done();
+                                tt = trans.start("Load Data", Env.SUB);
+                                List<Perm> ps = fp.value.getPerm();
+                                if(!ps.isEmpty()) {
+                                    Perm perm = fp.value.getPerm().get(0);
+                                    String desc = (perm.getDescription()!=null?perm.getDescription():BLANK);
+                                    rv.add(new AbsCell[]{new TextCell("Description:"),new TextCell(desc)});
+                                    boolean first=true;
+                                    for(String r : perm.getRoles()) {
+                                        if(first){
+                                            first=false;
+                                            rv.add(new AbsCell[] {
+                                                    new TextCell("Associated Roles:"),
+                                                    new TextCell(r)
+                                                });
+                                        } else {
+                                            rv.add(new AbsCell[] {
+                                                AbsCell.Null,
+                                                new TextCell(r)
+                                            });
+                                        }
+                                    }
+                                }
+                                String historyLink = PermHistory.HREF 
+                                        + "?type=" + pType + "&instance=" + pInstance + "&action=" + pAction;
+                                
+                                rv.add(new AbsCell[] {new RefCell("See History",historyLink,false)});
+                            } else {
+                                rv.add(new AbsCell[] {new TextCell(
+                                    fp.code()==HttpStatus.NOT_FOUND_404?
+                                        "*** Implicit Permission ***":
+                                        "*** Data Unavailable ***"
+                                        )});
+                            }
+                        } finally {
+                            tt.done();
+                        }
 
-                                               return null;
-                                       }
-                               });
-                       } catch (Exception e) {
-                               e.printStackTrace();
-                       }
-                       return new Cells(rv,null);
-               }
-       }
-}              
-               
\ No newline at end of file
+                        return null;
+                    }
+                });
+            } catch (Exception e) {
+                e.printStackTrace();
+            }
+            return new Cells(rv,null);
+        }
+    }
+}        
+        
\ No newline at end of file