diff options
author | Thugutla Sailakshmi <tsaila10@in.ibm.com> | 2019-07-30 15:58:57 +0530 |
---|---|---|
committer | Thugutla Sailakshmi <tsaila10@in.ibm.com> | 2019-07-30 15:59:30 +0530 |
commit | 243986ef1508b24e9273613c9bb1e2d95999f661 (patch) | |
tree | eef75bf0dd70c11293f6aabff8e44ffa64aff3b5 /aai-service/provider/src | |
parent | 8ab5893402544af46c8dfc67d907daa042e32c7e (diff) |
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 <tsaila10@in.ibm.com>
Diffstat (limited to 'aai-service/provider/src')
-rwxr-xr-x | aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java | 8 |
1 files changed, 4 insertions, 4 deletions
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(); |