From 94b2598b128f37c75b2faf6fba1dffe25d4586fd Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Wed, 9 Jan 2019 18:02:46 +0530 Subject: Sonar Fix: EchoRequest.java Fixed sonar issues/code-smells across this file Issue-ID: CCSDK-921 Change-Id: Ic438dfcd98b5643aef42da391e1926a2d79e6c38 Signed-off-by: Arundathi Patil --- .../src/main/java/org/onap/ccsdk/sli/adaptors/aai/EchoRequest.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'aai-service/provider/src') diff --git a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/EchoRequest.java b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/EchoRequest.java index fb234505..6011858d 100644 --- a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/EchoRequest.java +++ b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/EchoRequest.java @@ -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; } -- cgit 1.2.3-korg