diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2019-01-07 17:13:03 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2019-01-07 17:13:55 +0530 |
commit | cf04c089826d7f2bd139447de77db8e4d9761ddb (patch) | |
tree | 2b7c9e490b3bff046f6a19dac5732ef0ab77d31e | |
parent | 975ef94a1ca2efc6199462bf33abbc11ef3213c8 (diff) |
Sonar fix: Delg.java
Fixed sonar issues/code-smells across this file
Issue-ID: AAF-706
Change-Id: Iae525eb997f3352bfc8b7f3d74a835322f212d36
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
-rw-r--r-- | auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/user/Delg.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/user/Delg.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/user/Delg.java index 3cb9fb04..e4ddc2b1 100644 --- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/user/Delg.java +++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/user/Delg.java @@ -3,6 +3,8 @@ * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2018 IBM. * =========================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,7 +43,7 @@ import aaf.v2_0.DelgRequest; public class Delg extends BaseCmd<User> { static final String AUTHZ_DELG = "/authz/delegate"; - private final static String[] options = {"add","upd","del"}; + private static final String[] options = {"add","upd","del"}; public Delg(User user) throws APIException { super(user,"delegate", @@ -112,8 +114,8 @@ public class Delg extends BaseCmd<User> { } @Override - public void detailedHelp(int _indent, StringBuilder sb) { - int indent = _indent; + public void detailedHelp(int indentParam, StringBuilder sb) { + int indent = indentParam; detailLine(sb,indent,"Add, Update or Delete Delegate"); indent+=2; detailLine(sb,indent,"A Delegate is a person who will temporarily cover the Approval and"); |