Sonar fix: AsdcApiSliClient.java 89/74789/1
authorArundathi Patil <arundpil@in.ibm.com>
Tue, 18 Dec 2018 09:48:28 +0000 (15:18 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Tue, 18 Dec 2018 09:48:36 +0000 (15:18 +0530)
Fixed sonar issues/code-smells across this file.

Issue-ID: CCSDK-853
Change-Id: Ib864ab2ac5302aa9387bd19a2dfcc642d3a10f87
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
asdcApi/provider/src/main/java/org/onap/ccsdk/sli/northbound/asdcapi/AsdcApiSliClient.java

index 02dc786..880a2fb 100644 (file)
@@ -4,6 +4,7 @@
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights
  *                     reserved.
+ * Modifications Copyright © 2018 IBM.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -34,6 +35,8 @@ public class AsdcApiSliClient {
 
        private final SvcLogicService svcLogicService;
 
+       private  String ErrorCode = "error-code";
+
        public AsdcApiSliClient(final SvcLogicService svcLogicService) {
                this.svcLogicService = svcLogicService;
        }
@@ -78,12 +81,12 @@ public class AsdcApiSliClient {
 
                if ("failure".equalsIgnoreCase(respProps.getProperty("SvcLogic.status"))) {
 
-                       if (!respProps.containsKey("error-code")) {
-                               respProps.setProperty("error-code", "500");
+                       if (!respProps.containsKey(ErrorCode)) {
+                               respProps.setProperty(ErrorCode, "500");
                        }
                } else {
-                       if (!respProps.containsKey("error-code")) {
-                               respProps.setProperty("error-code", "200");
+                       if (!respProps.containsKey(ErrorCode)) {
+                               respProps.setProperty(ErrorCode, "200");
                        }
                }