Collection syntax change because of Sonar
[aaf/authz.git] / auth / auth-gui / src / main / java / org / onap / aaf / auth / gui / pages / ApiDocs.java
index 05ee21b..95aa052 100644 (file)
@@ -96,10 +96,7 @@ public class ApiDocs extends Page {
                                                .leaf(HTMLGen.LI).text("The Client must utilize HTTP/S. Non Secure HTTP is not acceptable").end()
                                                .leaf(HTMLGen.LI).text("The Client MUST supply an Identity validated by one of the following mechanisms").end()
                                                .incr(HTMLGen.UL)
-                                                       .leaf(HTMLGen.LI).text("Valid Global Login Cookie (CSP)").end()
-                                                       .leaf(HTMLGen.LI).text("BASIC AUTH protocol using CSO Registered MechID, provisioned in AAF").end()
-                                                       .leaf(HTMLGen.LI).text("BASIC AUTH protocol using ATTUID@csp.att.com, Global Login Password").end()
-                                                       .leaf(HTMLGen.LI).text("(Available 3rd Qtr 2015) Valid tGuard Login Cookie").end()
+                                                       .leaf(HTMLGen.LI).text("BASIC AUTH protocol using Organization Registered AppID, provisioned in AAF").end()
                                                        .leaf(HTMLGen.LI).text("(Near Future) Application level Certificate").end()
                                                .end()
                                        .end()
@@ -164,12 +161,12 @@ public class ApiDocs extends Page {
                
                @Override
                public Cells get(final AuthzTrans trans, final AAF_GUI gui) {
-                       final ArrayList<AbsCell[]> ns = new ArrayList<AbsCell[]>();
-                       final ArrayList<AbsCell[]> perms = new ArrayList<AbsCell[]>();
-                       final ArrayList<AbsCell[]> roles = new ArrayList<AbsCell[]>();
-                       final ArrayList<AbsCell[]> user = new ArrayList<AbsCell[]>();
-                       final ArrayList<AbsCell[]> aafOnly = new ArrayList<AbsCell[]>();
-                       final ArrayList<AbsCell[]> rv = new ArrayList<AbsCell[]>();
+                       final ArrayList<AbsCell[]> ns = new ArrayList<>();
+                       final ArrayList<AbsCell[]> perms = new ArrayList<>();
+                       final ArrayList<AbsCell[]> roles = new ArrayList<>();
+                       final ArrayList<AbsCell[]> user = new ArrayList<>();
+                       final ArrayList<AbsCell[]> aafOnly = new ArrayList<>();
+                       final ArrayList<AbsCell[]> rv = new ArrayList<>();
                        
        
                        final TimeTaken tt = trans.start("AAF APIs",Env.REMOTE);