diff options
author | Sudarshan Kumar <sudars19@in.ibm.com> | 2019-02-07 15:57:15 +0530 |
---|---|---|
committer | Takamune Cho <takamune.cho@att.com> | 2019-02-07 18:35:00 +0000 |
commit | 6a470e0ca7b88d529ef14540f0df307c83cbe0ba (patch) | |
tree | ab8afd2616df019fc14d0c7d5573543b9407b67a /appc-config/appc-config-params/provider | |
parent | 676fde0f66223f04dec44a1512f7aaef5e9d71a5 (diff) |
Vulnerabilities Fix - ParamsHandlerActivator.java
Removed printStackTrace and put logger
Issue-ID: APPC-1399
Change-Id: I0217b530cde6b6d22b09210eeb65697006d60795
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
Diffstat (limited to 'appc-config/appc-config-params/provider')
-rw-r--r-- | appc-config/appc-config-params/provider/src/main/java/org/onap/sdnc/config/params/ParamsHandlerActivator.java | 11 |
1 files changed, 9 insertions, 2 deletions
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<ServiceRegistration> registrations = new LinkedList<ServiceRegistration>(); @@ -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); + } } |