aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorezhil <ezhrajam@in.ibm.com>2018-12-04 16:05:07 +0530
committerEzhilarasi R <ezhrajam@in.ibm.com>2018-12-04 11:18:40 +0000
commit65464926663b5b923dbf39022c341743094482a2 (patch)
tree8f427a2103363c30c5aa73ebb15782d092d6f857
parent7833631f8c9824c3e0061aa0038563cbd1c8102f (diff)
Fixed sonar issues in MrProvConnection.java
Fixed logger sonar issues Issue-ID: DMAAP-898 Change-Id: Ic28e24dca2b5800f6a8900067b35c881dfcf4d6d Signed-off-by: ezhil <ezhrajam@in.ibm.com>
-rw-r--r--src/main/java/org/onap/dmaap/dbcapi/client/MrProvConnection.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/org/onap/dmaap/dbcapi/client/MrProvConnection.java b/src/main/java/org/onap/dmaap/dbcapi/client/MrProvConnection.java
index 26c494f..94d671f 100644
--- a/src/main/java/org/onap/dmaap/dbcapi/client/MrProvConnection.java
+++ b/src/main/java/org/onap/dmaap/dbcapi/client/MrProvConnection.java
@@ -3,6 +3,7 @@
* org.onap.dmaap
* ================================================================================
* 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.
@@ -37,9 +38,6 @@ import javax.net.ssl.HttpsURLConnection;
import org.apache.commons.codec.binary.Base64;
import org.apache.log4j.Logger;
import org.onap.dmaap.dbcapi.aaf.AafDecrypt;
-import org.onap.dmaap.dbcapi.aaf.AafService;
-import org.onap.dmaap.dbcapi.aaf.DecryptionInterface;
-import org.onap.dmaap.dbcapi.aaf.AafService.ServiceType;
import org.onap.dmaap.dbcapi.logging.BaseLoggingClass;
import org.onap.dmaap.dbcapi.logging.DmaapbcLogMessageEnum;
import org.onap.dmaap.dbcapi.model.ApiError;
@@ -227,13 +225,15 @@ public class MrProvConnection extends BaseLoggingClass{
}
} catch (Exception e) {
- System.err.println("Unable to read response " );
- e.printStackTrace();
+ errorLogger.error("Unable to read response " );
+
}
finally {
try {
uc.disconnect();
- } catch ( Exception e ) {}
+ } catch ( Exception e ) {
+ errorLogger.error("Unable to disconnect");
+ }
}
return new String( rc +": " + responsemessage );