Sonar Fix: EchoRequest.java 55/75555/1
authorArundathi Patil <arundpil@in.ibm.com>
Wed, 9 Jan 2019 12:32:46 +0000 (18:02 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Wed, 9 Jan 2019 12:33:16 +0000 (18:03 +0530)
Fixed sonar issues/code-smells across this file

Issue-ID: CCSDK-921
Change-Id: Ic438dfcd98b5643aef42da391e1926a2d79e6c38
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/EchoRequest.java

index fb23450..6011858 100644 (file)
@@ -4,6 +4,7 @@
  * ================================================================================
  * Copyright (C) 2017 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.
@@ -67,14 +68,14 @@ public class EchoRequest extends AAIRequest {
        public String toJSONString() {
                ObjectMapper mapper = getObjectMapper();
                EchoResponse tenant = (EchoResponse)requestDatum;
-               String json_text = null;
+               String jsonText = null;
                try {
-                       json_text = mapper.writeValueAsString(tenant);
+                       jsonText = mapper.writeValueAsString(tenant);
                } catch (JsonProcessingException exc) {
                        handleException(this, exc);
                        return null;
                }
-               return json_text;
+               return jsonText;
        }