Merge "Admin.java: Fixed sonar issues"
[aaf/authz.git] / auth / auth-cmd / src / main / java / org / onap / aaf / auth / cmd / ns / Admin.java
index f1952fa..9d2843b 100644 (file)
@@ -33,9 +33,9 @@ import org.onap.aaf.cadi.client.Retryable;
 import org.onap.aaf.misc.env.APIException;
 
 public class Admin extends BaseCmd<NS> {
-    private final static String[] options = {"add","del"};
+    private static final String[] options = {"add","del"};
 
-    public Admin(NS ns) throws APIException {
+    public Admin(NS ns) {
         super(ns,"admin",
                 new Param(optionsToString(options),true),
                 new Param("ns-name",true),
@@ -44,8 +44,8 @@ public class Admin extends BaseCmd<NS> {
     }
 
     @Override
-    public int _exec(int _idx, final String ... args) throws CadiException, APIException, LocatorException {
-            int idx = _idx;
+    public int _exec(int idxValue, final String ... args) throws CadiException, APIException, LocatorException {
+            int idx = idxValue;
         final int option = whichOption(options, args[idx++]);
         final String ns = args[idx++];
         final String ids[] = args[idx++].split(",");
@@ -54,7 +54,7 @@ public class Admin extends BaseCmd<NS> {
             @Override
             public Integer code(Rcli<?> client) throws CadiException, APIException {    
                 Future<Void> fp = null;
-                for(String id : ids) {
+                for (String id : ids) {
                     id = fullID(id);
                     String verb;
                     switch(option) {
@@ -70,7 +70,7 @@ public class Admin extends BaseCmd<NS> {
                             throw new CadiException("Bad Argument");
                     };
                 
-                    if(fp.get(AAFcli.timeout())) {
+                    if (fp.get(AAFcli.timeout())) {
                         pw().append("Admin ");
                         pw().append(id);
                         pw().append(verb);
@@ -87,8 +87,8 @@ public class Admin extends BaseCmd<NS> {
     }
 
     @Override
-    public void detailedHelp(int _indent, StringBuilder sb) {
-            int indent = _indent;
+    public void detailedHelp(int indentValue, StringBuilder sb) {
+            int indent = indentValue;
         detailLine(sb,indent,"Add or Delete Administrator to/from Namespace");
         indent+=4;
         detailLine(sb,indent,"name - Name of Namespace");