diff options
author | Sandeep J <sandeejh@in.ibm.com> | 2018-12-21 17:37:26 +0530 |
---|---|---|
committer | Sandeep J <sandeejh@in.ibm.com> | 2018-12-21 17:37:38 +0530 |
commit | 1aed4dcc66c754d6ee031aba47acad8faa7fb3f6 (patch) | |
tree | 0484db327965def650857e9fbd7629bbd9106067 | |
parent | 0935246ecb1cad72a86eeedbc43f1ebdbbe5a9c8 (diff) |
fixed sonar issues in ConfigureNodeExecutor.java
fixed sonar issues
Issue-ID: CCSDK-525
Change-Id: I14e357eeab5aaa2736f6c6492925e860e9029f80
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
-rw-r--r-- | sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ConfigureNodeExecutor.java | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ConfigureNodeExecutor.java b/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ConfigureNodeExecutor.java index 7ffdfcaf7..5d6a08391 100644 --- a/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ConfigureNodeExecutor.java +++ b/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/ConfigureNodeExecutor.java @@ -40,6 +40,8 @@ public class ConfigureNodeExecutor extends AbstractSvcLogicNodeExecutor { private static final Logger LOG = LoggerFactory .getLogger(ConfigureNodeExecutor.class); private static final String CAUGHT_EXCEPTION_MSG="Caught exception from "; + private static final String ALREADY_ACTIVE= "already-active"; + private static final String NOT_FOUND= "not-found"; public SvcLogicNode execute(SvcLogicServiceBase svc, SvcLogicNode node, SvcLogicContext ctx) throws SvcLogicException { @@ -108,10 +110,10 @@ public class ConfigureNodeExecutor extends AbstractSvcLogicNodeExecutor { case SUCCESS: break; case ALREADY_ACTIVE: - outValue = "already-active"; + outValue = ALREADY_ACTIVE; break; case NOT_FOUND: - outValue = "not-found"; + outValue = NOT_FOUND; break; case NOT_READY: outValue = "not-ready"; @@ -134,10 +136,10 @@ public class ConfigureNodeExecutor extends AbstractSvcLogicNodeExecutor { case SUCCESS: break; case ALREADY_ACTIVE: - outValue = "already-active"; + outValue = ALREADY_ACTIVE; break; case NOT_FOUND: - outValue = "not-found"; + outValue = NOT_FOUND; break; case NOT_READY: outValue = "not-ready"; @@ -150,10 +152,10 @@ public class ConfigureNodeExecutor extends AbstractSvcLogicNodeExecutor { } break; case ALREADY_ACTIVE: - outValue = "already-active"; + outValue = ALREADY_ACTIVE; break; case NOT_FOUND: - outValue = "not-found"; + outValue = NOT_FOUND; break; case NOT_READY: outValue = "not-ready"; @@ -177,10 +179,10 @@ public class ConfigureNodeExecutor extends AbstractSvcLogicNodeExecutor { outValue = "success"; break; case ALREADY_ACTIVE: - outValue = "already-active"; + outValue = ALREADY_ACTIVE; break; case NOT_FOUND: - outValue = "not-found"; + outValue = NOT_FOUND; break; case NOT_READY: outValue = "not-ready"; @@ -203,10 +205,10 @@ public class ConfigureNodeExecutor extends AbstractSvcLogicNodeExecutor { outValue = "success"; break; case ALREADY_ACTIVE: - outValue = "already-active"; + outValue = ALREADY_ACTIVE; break; case NOT_FOUND: - outValue = "not-found"; + outValue = NOT_FOUND; break; case NOT_READY: outValue = "not-ready"; |