CCSDK-1559 -Rename this local variable to match the regular expression '^[a-z][a... 65/92265/1
authorThugutla Sailakshmi <tsaila10@in.ibm.com>
Tue, 30 Jul 2019 10:28:57 +0000 (15:58 +0530)
committerThugutla Sailakshmi <tsaila10@in.ibm.com>
Tue, 30 Jul 2019 10:29:30 +0000 (15:59 +0530)
Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'

Issue-ID: CCSDK-1559
Change-Id: I66e51fbb6f5836bc7b4ecb6640b2d63d7f7e1522
Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java

index 41290c0..a683a93 100755 (executable)
@@ -1240,7 +1240,7 @@ public class AAIService extends AAIDeclarations implements AAIClient, SvcLogicRe
     }
 
 
-    protected boolean deleteList(URL httpReqUrl, String json_text) throws AAIServiceException {
+    protected boolean deleteList(URL httpReqUrl, String jsonText) throws AAIServiceException {
         if(httpReqUrl ==  null) {
             throw new NullPointerException();
         }
@@ -1253,15 +1253,15 @@ public class AAIService extends AAIDeclarations implements AAIClient, SvcLogicRe
 
 //            SSLSocketFactory sockFact = CTX.getSocketFactory();
 //            con.setSSLSocketFactory( sockFact );
-            if (json_text != null) {
+            if (jsonText != null) {
                 OutputStreamWriter osw = new OutputStreamWriter(con.getOutputStream());
-                osw.write(json_text);
+                osw.write(jsonText);
                 osw.flush();
                 osw.close();
             }
 
             LOGwriteFirstTrace("DELETE", httpReqUrl.toString());
-            LOGwriteDateTrace("data", json_text);
+            LOGwriteDateTrace("data", jsonText);
 
             // Check for errors
             int responseCode = con.getResponseCode();