summaryrefslogtreecommitdiffstats
path: root/auth/auth-cmd
diff options
context:
space:
mode:
authorArundathi Patil <arundpil@in.ibm.com>2018-09-19 12:24:14 +0530
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>2018-09-19 12:24:30 +0530
commit75dd227b5cedae09564b5ca3e89271b97ce6e1b1 (patch)
treeeed8921828a8de9a4d7f7618159334b40b906abe /auth/auth-cmd
parente66b95f220bbef1efeaee337749f91e7b15b1fd7 (diff)
Admin.java: Fixed sonar issues
Sonar Link: https://sonar.onap.org/code?id=org.onap.aaf.authz%3Aparent&selected=org.onap.aaf.authz%3Aaaf-auth-cmd%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Faaf%2Fauth%2Fcmd%2Fns%2FAdmin.java Issue-ID: AAF-506 Change-Id: Ibaf98f100deef79d24258b8b2fe46e02f5666656 Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'auth/auth-cmd')
-rw-r--r--auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/Admin.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/Admin.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/Admin.java
index 90141819..9d2843bc 100644
--- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/Admin.java
+++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/ns/Admin.java
@@ -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(",");
@@ -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");