From 243986ef1508b24e9273613c9bb1e2d95999f661 Mon Sep 17 00:00:00 2001 From: Thugutla Sailakshmi Date: Tue, 30 Jul 2019 15:58:57 +0530 Subject: CCSDK-1559 -Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$' 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 --- .../src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'aai-service/provider/src/main/java') diff --git a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java index 41290c07..a683a93b 100755 --- a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java +++ b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java @@ -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(); -- cgit 1.2.3-korg