Remove Sonar issues 35/111935/2
authorelinuxhenrik <henrik.b.andersson@est.tech>
Tue, 1 Sep 2020 07:54:27 +0000 (09:54 +0200)
committerelinuxhenrik <henrik.b.andersson@est.tech>
Tue, 1 Sep 2020 08:01:40 +0000 (10:01 +0200)
Change-Id: I237379f7cb8043abaf75870312412a6302c9705a
Issue-ID: CCSDK-2604
Signed-off-by: elinuxhenrik <henrik.b.andersson@est.tech>
a1-adapter/a1-adapter-api/provider/pom.xml
a1-adapter/a1-adapter-api/provider/src/main/java/org/onap/ccsdk/features/a1/adapter/A1AdapterClient.java
a1-adapter/a1-adapter-api/provider/src/main/java/org/onap/ccsdk/features/a1/adapter/A1AdapterProvider.java

index a542441..da7933f 100644 (file)
     <name>ccsdk-oran :: ${project.artifactId}</name>
     <properties>
       <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
-      <!-- Override the snapshot version from parent pom -->
-      <!-- Skipping Override
-      <ccsdk.features.version>1.0.1-SNAPSHOT</ccsdk.features.version>
-      <ccsdk.sli.core.version>1.0.1-SNAPSHOT</ccsdk.sli.core.version>
-      <ccsdk.sli.adaptors.version>1.0.1-SNAPSHOT</ccsdk.sli.adaptors.version>
-      <ccsdk.sli.northbound.version>1.0.1-SNAPSHOT</ccsdk.sli.northbound.version>
-      <ccsdk.sli.plugins.version>1.0.1-SNAPSHOT</ccsdk.sli.plugins.version>
-      -->
     </properties>
 
     <dependencyManagement>
index f1b2eae..2cf63b3 100644 (file)
@@ -34,6 +34,9 @@ import org.slf4j.LoggerFactory;
 
 public class A1AdapterClient {
 
+    private static final String PARAMETERS_PASSED_TO_SLI = "Parameters passed to SLI";
+    private static final String PARAMETERS_RETURNED_BY_SLI = "Parameters returned by SLI";
+
     private static final Logger LOG = LoggerFactory.getLogger(A1AdapterClient.class);
 
     private SvcLogicService svcLogicService = null;
@@ -51,23 +54,11 @@ public class A1AdapterClient {
         Properties localProp;
         localProp = MdsalHelper.toProperties(parms, serviceData);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters passed to SLI");
-
-            for (Object key : localProp.keySet()) {
-                String parmName = (String) key;
-                String parmValue = localProp.getProperty(parmName);
-
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_PASSED_TO_SLI, localProp);
         }
         Properties respProps = svcLogicService.execute(module, rpc, version, mode, localProp);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters returned by SLI");
-            for (Object key : respProps.keySet()) {
-                String parmName = (String) key;
-                String parmValue = respProps.getProperty(parmName);
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_RETURNED_BY_SLI, localProp);
         }
         if ("failure".equalsIgnoreCase(respProps.getProperty("SvcLogic.status"))) {
             return respProps;
@@ -81,23 +72,11 @@ public class A1AdapterClient {
         Properties localProp;
         localProp = MdsalHelper.toProperties(parms, serviceData);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters passed to SLI");
-
-            for (Object key : localProp.keySet()) {
-                String parmName = (String) key;
-                String parmValue = localProp.getProperty(parmName);
-
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_PASSED_TO_SLI, localProp);
         }
         Properties respProps = svcLogicService.execute(module, rpc, version, mode, localProp);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters returned by SLI");
-            for (Object key : respProps.keySet()) {
-                String parmName = (String) key;
-                String parmValue = respProps.getProperty(parmName);
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_RETURNED_BY_SLI, localProp);
         }
         if ("failure".equalsIgnoreCase(respProps.getProperty("SvcLogic.status"))) {
             return respProps;
@@ -111,23 +90,11 @@ public class A1AdapterClient {
         Properties localProp;
         localProp = MdsalHelper.toProperties(parms, serviceData);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters passed to SLI");
-
-            for (Object key : localProp.keySet()) {
-                String parmName = (String) key;
-                String parmValue = localProp.getProperty(parmName);
-
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_PASSED_TO_SLI, localProp);
         }
         Properties respProps = svcLogicService.execute(module, rpc, version, mode, localProp);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters returned by SLI");
-            for (Object key : respProps.keySet()) {
-                String parmName = (String) key;
-                String parmValue = respProps.getProperty(parmName);
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_RETURNED_BY_SLI, localProp);
         }
         if ("failure".equalsIgnoreCase(respProps.getProperty("SvcLogic.status"))) {
             return respProps;
@@ -141,23 +108,11 @@ public class A1AdapterClient {
         Properties localProp;
         localProp = MdsalHelper.toProperties(parms, serviceData);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters passed to SLI");
-
-            for (Object key : localProp.keySet()) {
-                String parmName = (String) key;
-                String parmValue = localProp.getProperty(parmName);
-
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_PASSED_TO_SLI, localProp);
         }
         Properties respProps = svcLogicService.execute(module, rpc, version, mode, localProp);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters returned by SLI");
-            for (Object key : respProps.keySet()) {
-                String parmName = (String) key;
-                String parmValue = respProps.getProperty(parmName);
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_RETURNED_BY_SLI, localProp);
         }
         if ("failure".equalsIgnoreCase(respProps.getProperty("SvcLogic.status"))) {
             return respProps;
@@ -171,23 +126,11 @@ public class A1AdapterClient {
         Properties localProp;
         localProp = MdsalHelper.toProperties(parms, serviceData);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters passed to SLI");
-
-            for (Object key : localProp.keySet()) {
-                String parmName = (String) key;
-                String parmValue = localProp.getProperty(parmName);
-
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_PASSED_TO_SLI, localProp);
         }
         Properties respProps = svcLogicService.execute(module, rpc, version, mode, localProp);
         if (LOG.isDebugEnabled()) {
-            LOG.debug("Parameters returned by SLI");
-            for (Object key : respProps.keySet()) {
-                String parmName = (String) key;
-                String parmValue = respProps.getProperty(parmName);
-                LOG.debug(parmName + " = " + parmValue);
-            }
+            logParameters(PARAMETERS_RETURNED_BY_SLI, localProp);
         }
         if ("failure".equalsIgnoreCase(respProps.getProperty("SvcLogic.status"))) {
             return respProps;
@@ -195,4 +138,15 @@ public class A1AdapterClient {
         MdsalHelper.toBuilder(respProps, serviceData);
         return respProps;
     }
+
+    private void logParameters(String message, Properties localProp) {
+        LOG.debug(message);
+
+        for (Object key : localProp.keySet()) {
+            String parmName = (String) key;
+            String parmValue = localProp.getProperty(parmName);
+
+            LOG.debug("{}={}", parmName, parmValue);
+        }
+    }
 }
index 369f583..e1c151a 100644 (file)
@@ -65,6 +65,17 @@ import org.slf4j.LoggerFactory;
 @SuppressWarnings("squid:S1874") // "@Deprecated" code should not be used
 public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
 
+    private static final String A1_ADAPTER_API = "A1-ADAPTER-API";
+    private static final String RESPONSE_BODY = "responseBody";
+    private static final String RESPONSE_CODE = "response-code";
+    private static final String SYNC = "sync";
+
+    private static final String ADDING_INPUT_DATA_MESSAGE = "Adding INPUT data for {} input: {}";
+    private static final String A1_ADAPTER_CLIENT_GRAPH_MESSAGE = "A1AdapterClient has a Directed Graph for '{}'";
+    private static final String SERVICE_EXCEPTION_MESSAGE = "Caught exception executing service logic for {}, {}";
+    private static final String NO_SERVICE_LOGIC_ACTIVE_MESSAGE = "No service logic active for A1Adapter: '{}'";
+    private static final String LOOKUP_SERVICE_LOGIC_EXCEPTION_MESSAGE = "Caught exception looking for service logic, {}";
+
     private static final Logger log = LoggerFactory.getLogger(A1AdapterProvider.class);
 
     private static final String APPLICATION_NAME = "a1Adapter-api";
@@ -113,35 +124,28 @@ public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
         Properties parms = new Properties();
         DeleteA1PolicyOutputBuilder deleteResponse = new DeleteA1PolicyOutputBuilder();
         // add input to parms
-        log.info("Adding INPUT data for " + svcOperation + " input: " + input);
+        log.info(ADDING_INPUT_DATA_MESSAGE, svcOperation, input);
         DeleteA1PolicyInputBuilder inputBuilder = new DeleteA1PolicyInputBuilder(input);
         MdsalHelper.toProperties(parms, inputBuilder.build());
-        log.info("Printing SLI parameters to be passed");
-        // iterate properties file to get key-value pairs
-        for (String key : parms.stringPropertyNames()) {
-            String value = parms.getProperty(key);
-            log.info("The SLI parameter in " + key + " is: " + value);
-        }
+        logSliParameters(parms);
         // Call SLI sync method
         try {
-            if (a1AdapterClient.hasGraph("A1-ADAPTER-API", svcOperation, null, "sync")) {
-                log.info("A1AdapterClient has a Directed Graph for '" + svcOperation + "'");
+            if (a1AdapterClient.hasGraph(A1_ADAPTER_API, svcOperation, null, SYNC)) {
+                log.info(A1_ADAPTER_CLIENT_GRAPH_MESSAGE, svcOperation);
                 try {
-                    Properties responseParms = a1AdapterClient.execute("A1-ADAPTER-API", svcOperation, null, "sync", deleteResponse, parms);
-                    log.info("responseBody::"+responseParms.getProperty("responseBody"));
-                    log.info("responseCode::"+responseParms.getProperty("response-code"));
-                    log.info("responseMessage::"+responseParms.getProperty("response-message"));
-                    deleteResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty("response-code")));
+                    Properties responseParms = a1AdapterClient.execute(A1_ADAPTER_API, svcOperation, null, SYNC, deleteResponse, parms);
+                    logResponse(responseParms);
+                    deleteResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty(RESPONSE_CODE)));
                 } catch (Exception e) {
-                    log.error("Caught exception executing service logic for " + svcOperation, e);
+                    log.error(SERVICE_EXCEPTION_MESSAGE, svcOperation, e.getMessage());
                     deleteResponse.setHttpStatus(500);
                 }
             } else {
-                log.error("No service logic active for A1Adapter: '" + svcOperation + "'");
+                log.error(NO_SERVICE_LOGIC_ACTIVE_MESSAGE, svcOperation);
                 deleteResponse.setHttpStatus(503);
             }
         } catch (Exception e) {
-            log.error("Caught exception looking for service logic", e);
+            log.error(LOOKUP_SERVICE_LOGIC_EXCEPTION_MESSAGE, e.getMessage());
             deleteResponse.setHttpStatus(500);
         }
         RpcResult<DeleteA1PolicyOutput> rpcResult =
@@ -157,36 +161,29 @@ public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
         Properties parms = new Properties();
         GetA1PolicyOutputBuilder policyResponse = new GetA1PolicyOutputBuilder();
         // add input to parms
-        log.info("Adding INPUT data for " + svcOperation + " input: " + input);
+        log.info(ADDING_INPUT_DATA_MESSAGE, svcOperation, input);
         GetA1PolicyInputBuilder inputBuilder = new GetA1PolicyInputBuilder(input);
         MdsalHelper.toProperties(parms, inputBuilder.build());
-        log.info("Printing SLI parameters to be passed");
-        // iterate properties file to get key-value pairs
-        for (String key : parms.stringPropertyNames()) {
-            String value = parms.getProperty(key);
-            log.info("The SLI parameter in " + key + " is: " + value);
-        }
+        logSliParameters(parms);
         // Call SLI sync method
         try {
-            if (a1AdapterClient.hasGraph("A1-ADAPTER-API", svcOperation, null, "sync")) {
-                log.info("A1AdapterClient has a Directed Graph for '" + svcOperation + "'");
+            if (a1AdapterClient.hasGraph(A1_ADAPTER_API, svcOperation, null, SYNC)) {
+                log.info(A1_ADAPTER_CLIENT_GRAPH_MESSAGE, svcOperation);
                 try {
-                    Properties responseParms = a1AdapterClient.execute("A1-ADAPTER-API", svcOperation, null, "sync", policyResponse, parms);
-                    log.info("responseBody::"+responseParms.getProperty("responseBody"));
-                    policyResponse.setBody(responseParms.getProperty("responseBody"));
-                    log.info("responseCode::"+responseParms.getProperty("response-code"));
-                    log.info("responseMessage::"+responseParms.getProperty("response-message"));
-                    policyResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty("response-code")));
+                    Properties responseParms = a1AdapterClient.execute(A1_ADAPTER_API, svcOperation, null, SYNC, policyResponse, parms);
+                    logResponse(responseParms);
+                    policyResponse.setBody(responseParms.getProperty(RESPONSE_BODY));
+                    policyResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty(RESPONSE_CODE)));
                 } catch (Exception e) {
-                    log.error("Caught exception executing service logic for " + svcOperation, e);
+                    log.error(SERVICE_EXCEPTION_MESSAGE, svcOperation, e.getMessage());
                     policyResponse.setHttpStatus(500);
                 }
             } else {
-                log.error("No service logic active for A1Adapter: '" + svcOperation + "'");
+                log.error(NO_SERVICE_LOGIC_ACTIVE_MESSAGE, svcOperation);
                 policyResponse.setHttpStatus(503);
             }
         } catch (Exception e) {
-            log.error("Caught exception looking for service logic", e);
+            log.error(LOOKUP_SERVICE_LOGIC_EXCEPTION_MESSAGE, e.getMessage());
             policyResponse.setHttpStatus(500);
         }
         RpcResult<GetA1PolicyOutput> rpcResult =
@@ -202,36 +199,29 @@ public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
         Properties parms = new Properties();
         GetA1PolicyStatusOutputBuilder policyStatusResponse = new GetA1PolicyStatusOutputBuilder();
         // add input to parms
-        log.info("Adding INPUT data for " + svcOperation + " input: " + input);
+        log.info(ADDING_INPUT_DATA_MESSAGE, svcOperation, input);
         GetA1PolicyStatusInputBuilder inputBuilder = new GetA1PolicyStatusInputBuilder(input);
         MdsalHelper.toProperties(parms, inputBuilder.build());
-        log.info("Printing SLI parameters to be passed");
-        // iterate properties file to get key-value pairs
-        for (String key : parms.stringPropertyNames()) {
-            String value = parms.getProperty(key);
-            log.info("The SLI parameter in " + key + " is: " + value);
-        }
+        logSliParameters(parms);
         // Call SLI sync method
         try {
-            if (a1AdapterClient.hasGraph("A1-ADAPTER-API", svcOperation, null, "sync")) {
-                log.info("A1AdapterClient has a Directed Graph for '" + svcOperation + "'");
+            if (a1AdapterClient.hasGraph(A1_ADAPTER_API, svcOperation, null, SYNC)) {
+                log.info(A1_ADAPTER_CLIENT_GRAPH_MESSAGE, svcOperation);
                 try {
-                    Properties responseParms = a1AdapterClient.execute("A1-ADAPTER-API", svcOperation, null, "sync", policyStatusResponse, parms);
-                    log.info("responseBody::"+responseParms.getProperty("responseBody"));
-                    policyStatusResponse.setBody(responseParms.getProperty("responseBody"));
-                    log.info("responseCode::"+responseParms.getProperty("response-code"));
-                    log.info("responseMessage::"+responseParms.getProperty("response-message"));
-                    policyStatusResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty("response-code")));
+                    Properties responseParms = a1AdapterClient.execute(A1_ADAPTER_API, svcOperation, null, SYNC, policyStatusResponse, parms);
+                    logResponse(responseParms);
+                    policyStatusResponse.setBody(responseParms.getProperty(RESPONSE_BODY));
+                    policyStatusResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty(RESPONSE_CODE)));
                 } catch (Exception e) {
-                    log.error("Caught exception executing service logic for " + svcOperation, e);
+                    log.error(SERVICE_EXCEPTION_MESSAGE, svcOperation, e.getMessage());
                     policyStatusResponse.setHttpStatus(500);
                 }
             } else {
-                log.error("No service logic active for A1Adapter: '" + svcOperation + "'");
+                log.error(NO_SERVICE_LOGIC_ACTIVE_MESSAGE, svcOperation);
                 policyStatusResponse.setHttpStatus(503);
             }
         } catch (Exception e) {
-            log.error("Caught exception looking for service logic", e);
+            log.error(LOOKUP_SERVICE_LOGIC_EXCEPTION_MESSAGE, e.getMessage());
             policyStatusResponse.setHttpStatus(500);
         }
         RpcResult<GetA1PolicyStatusOutput> rpcResult =
@@ -247,36 +237,29 @@ public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
         Properties parms = new Properties();
         GetA1PolicyTypeOutputBuilder policyTypeResponse = new GetA1PolicyTypeOutputBuilder();
         // add input to parms
-        log.info("Adding INPUT data for " + svcOperation + " input: " + input);
+        log.info(ADDING_INPUT_DATA_MESSAGE, svcOperation, input);
         GetA1PolicyTypeInputBuilder inputBuilder = new GetA1PolicyTypeInputBuilder(input);
         MdsalHelper.toProperties(parms, inputBuilder.build());
-        log.info("Printing SLI parameters to be passed");
-        // iterate properties file to get key-value pairs
-        for (String key : parms.stringPropertyNames()) {
-            String value = parms.getProperty(key);
-            log.info("The SLI parameter in " + key + " is: " + value);
-        }
+        logSliParameters(parms);
         // Call SLI sync method
         try {
-            if (a1AdapterClient.hasGraph("A1-ADAPTER-API", svcOperation, null, "sync")) {
-                log.info("A1AdapterClient has a Directed Graph for '" + svcOperation + "'");
+            if (a1AdapterClient.hasGraph(A1_ADAPTER_API, svcOperation, null, SYNC)) {
+                log.info(A1_ADAPTER_CLIENT_GRAPH_MESSAGE, svcOperation);
                 try {
-                    Properties responseParms = a1AdapterClient.execute("A1-ADAPTER-API", svcOperation, null, "sync", policyTypeResponse, parms);
-                    log.info("responseBody::"+responseParms.getProperty("responseBody"));
-                    policyTypeResponse.setBody(responseParms.getProperty("responseBody"));
-                    log.info("responseCode::"+responseParms.getProperty("response-code"));
-                    log.info("responseMessage::"+responseParms.getProperty("response-message"));
-                    policyTypeResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty("response-code")));
+                    Properties responseParms = a1AdapterClient.execute(A1_ADAPTER_API, svcOperation, null, SYNC, policyTypeResponse, parms);
+                    logResponse(responseParms);
+                    policyTypeResponse.setBody(responseParms.getProperty(RESPONSE_BODY));
+                    policyTypeResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty(RESPONSE_CODE)));
                 } catch (Exception e) {
-                    log.error("Caught exception executing service logic for " + svcOperation, e);
+                    log.error(SERVICE_EXCEPTION_MESSAGE, svcOperation, e.getMessage());
                     policyTypeResponse.setHttpStatus(500);
                 }
             } else {
-                log.error("No service logic active for A1Adapter: '" + svcOperation + "'");
+                log.error(NO_SERVICE_LOGIC_ACTIVE_MESSAGE, svcOperation);
                 policyTypeResponse.setHttpStatus(503);
             }
         } catch (Exception e) {
-            log.error("Caught exception looking for service logic", e);
+            log.error(LOOKUP_SERVICE_LOGIC_EXCEPTION_MESSAGE, e.getMessage());
             policyTypeResponse.setHttpStatus(500);
         }
         RpcResult<GetA1PolicyTypeOutput> rpcResult =
@@ -292,36 +275,29 @@ public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
         Properties parms = new Properties();
         PutA1PolicyOutputBuilder policyResponse = new PutA1PolicyOutputBuilder();
         // add input to parms
-        log.info("Adding INPUT data for " + svcOperation + " input: " + input);
+        log.info(ADDING_INPUT_DATA_MESSAGE, svcOperation, input);
         PutA1PolicyInputBuilder inputBuilder = new PutA1PolicyInputBuilder(input);
         MdsalHelper.toProperties(parms, inputBuilder.build());
-        log.info("Printing SLI parameters to be passed");
-        // iterate properties file to get key-value pairs
-        for (String key : parms.stringPropertyNames()) {
-            String value = parms.getProperty(key);
-            log.info("The SLI parameter in " + key + " is: " + value);
-        }
+        logSliParameters(parms);
         // Call SLI sync method
         try {
-            if (a1AdapterClient.hasGraph("A1-ADAPTER-API", svcOperation, null, "sync")) {
-                log.info("A1AdapterClient has a Directed Graph for '" + svcOperation + "'");
+            if (a1AdapterClient.hasGraph(A1_ADAPTER_API, svcOperation, null, SYNC)) {
+                log.info(A1_ADAPTER_CLIENT_GRAPH_MESSAGE, svcOperation);
                 try {
-                    Properties responseParms = a1AdapterClient.execute("A1-ADAPTER-API", svcOperation, null, "sync", policyResponse, parms);
-                    log.info("responseBody::"+responseParms.getProperty("responseBody"));
-                    policyResponse.setBody(responseParms.getProperty("responseBody"));
-                    log.info("responseCode::"+responseParms.getProperty("response-code"));
-                    log.info("responseMessage::"+responseParms.getProperty("response-message"));
-                    policyResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty("response-code")));
+                    Properties responseParms = a1AdapterClient.execute(A1_ADAPTER_API, svcOperation, null, SYNC, policyResponse, parms);
+                    logResponse(responseParms);
+                    policyResponse.setBody(responseParms.getProperty(RESPONSE_BODY));
+                    policyResponse.setHttpStatus(Integer.valueOf(responseParms.getProperty(RESPONSE_CODE)));
                 } catch (Exception e) {
-                    log.error("Caught exception executing service logic for " + svcOperation, e);
+                    log.error(SERVICE_EXCEPTION_MESSAGE, svcOperation, e.getMessage());
                     policyResponse.setHttpStatus(500);
                 }
             } else {
-                log.error("No service logic active for A1Adapter: '" + svcOperation + "'");
+                log.error(NO_SERVICE_LOGIC_ACTIVE_MESSAGE, svcOperation);
                 policyResponse.setHttpStatus(503);
             }
         } catch (Exception e) {
-            log.error("Caught exception looking for service logic", e);
+            log.error(LOOKUP_SERVICE_LOGIC_EXCEPTION_MESSAGE, e.getMessage());
             policyResponse.setHttpStatus(500);
         }
         RpcResult<PutA1PolicyOutput> rpcResult =
@@ -330,4 +306,18 @@ public class A1AdapterProvider implements AutoCloseable, A1ADAPTERAPIService {
         return Futures.immediateFuture(rpcResult);
     }
 
+    private void logSliParameters(Properties parms) {
+        log.info("Printing SLI parameters to be passed");
+        // iterate properties file to get key-value pairs
+        for (String key : parms.stringPropertyNames()) {
+            String value = parms.getProperty(key);
+            log.info("The SLI parameter in {} is: {}", key, value);
+        }
+    }
+
+    private void logResponse(Properties responseParms) {
+        log.info("responseBody::{}", responseParms.getProperty(RESPONSE_BODY));
+        log.info("responseCode::{}", responseParms.getProperty(RESPONSE_CODE));
+        log.info("responseMessage::{}", responseParms.getProperty("response-message"));
+    }
 }