From 6a470e0ca7b88d529ef14540f0df307c83cbe0ba Mon Sep 17 00:00:00 2001 From: Sudarshan Kumar Date: Thu, 7 Feb 2019 15:57:15 +0530 Subject: Vulnerabilities Fix - ParamsHandlerActivator.java Removed printStackTrace and put logger Issue-ID: APPC-1399 Change-Id: I0217b530cde6b6d22b09210eeb65697006d60795 Signed-off-by: Sudarshan Kumar --- .../org/onap/sdnc/config/params/ParamsHandlerActivator.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'appc-config/appc-config-params') diff --git a/appc-config/appc-config-params/provider/src/main/java/org/onap/sdnc/config/params/ParamsHandlerActivator.java b/appc-config/appc-config-params/provider/src/main/java/org/onap/sdnc/config/params/ParamsHandlerActivator.java index c88036f98..c98ec3e55 100644 --- a/appc-config/appc-config-params/provider/src/main/java/org/onap/sdnc/config/params/ParamsHandlerActivator.java +++ b/appc-config/appc-config-params/provider/src/main/java/org/onap/sdnc/config/params/ParamsHandlerActivator.java @@ -5,7 +5,9 @@ * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Copyright (C) 2017 Amdocs - * ============================================================================= + * ================================================================================ + * 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 @@ -25,14 +27,18 @@ package org.onap.sdnc.config.params; import java.util.LinkedList; import java.util.List; + import org.onap.sdnc.config.params.parser.PropertyDefinitionNode; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceRegistration; + import com.att.eelf.configuration.EELFLogger; import com.att.eelf.configuration.EELFManager; public class ParamsHandlerActivator implements BundleActivator { + + private static final String STR_PROPERTY_DEFINITION_FAILED = "Failed while getting PropertyDefinitionNode"; private List registrations = new LinkedList(); @@ -51,7 +57,8 @@ public class ParamsHandlerActivator implements BundleActivator { log.info("Registering service sccessful for " + propertyDefinitionNode.getClass().getName()); } catch (Exception e) { - e.printStackTrace(); + log.error(STR_PROPERTY_DEFINITION_FAILED, e); + } } -- cgit 1.2.3-korg