Vulnerabilities Fix - XResponseProcessor.java 66/78366/5
authorSudarshan Kumar <sudars19@in.ibm.com>
Wed, 13 Feb 2019 08:19:24 +0000 (13:49 +0530)
committerTakamune Cho <takamune.cho@att.com>
Wed, 20 Feb 2019 15:05:26 +0000 (15:05 +0000)
Removed printStacktrace and specified specific exception

Issue-ID: APPC-1399
Change-Id: I44c938cdd00a88ff76dfa36dbe49942f91546bb2
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
appc-inbound/appc-design-services/provider/src/main/java/org/onap/appc/design/xinterface/XResponseProcessor.java

index 5d0154c..7f64863 100644 (file)
@@ -5,9 +5,11 @@
  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Copyright (C) 2017 Amdocs
- * =============================================================================
+ * ================================================================================
  * Modifications Copyright (C) 2019 Ericsson
- * =============================================================================
+ * ================================================================================
+ * Modifications Copyright (c) 2019 IBM
+ * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
@@ -36,6 +38,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
 public class XResponseProcessor {
 
     private final EELFLogger log = EELFManager.getInstance().getLogger(XInterfaceService.class);
+    private static final String EXCEPTION_WHILE_RECEIVING_DATA = "Exception occured while receiving data";
     Dme2Client dme2Client;
 
     public static XResponseProcessor getInstance() {
@@ -90,7 +93,7 @@ public class XResponseProcessor {
                                                     if (instarResponse == null || instarResponse.length() < 0)
                                                         throw new Exception("No Data received from Instar for this action " + action);
         } catch (Exception e) {
-            e.printStackTrace();
+            log.error(EXCEPTION_WHILE_RECEIVING_DATA, e);
             throw e;
         }
         return instarResponse;