From: Dilip kumar Pampana Date: Tue, 9 Jan 2018 19:51:52 +0000 (-0500) Subject: Artifact Handler Updates X-Git-Tag: v1.3.0~444 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=939d33e7468582edf643de2d66f06fa4b638ed67;p=appc.git Artifact Handler Updates replaced Constants.APPC_CONFIG_DIR with System.getenv("APPC_CONFIG_DIR") in dbServices.java Issue-ID: APPC-350 Change-Id: Ib0f3ec47311848a5a75525d0e35361485cc63956 Signed-off-by: Dilip kumar Pampana --- diff --git a/appc-inbound/appc-artifact-handler/provider/src/main/java/org/onap/appc/artifact/handler/dbservices/DBService.java b/appc-inbound/appc-artifact-handler/provider/src/main/java/org/onap/appc/artifact/handler/dbservices/DBService.java index bd2f6dfff..278808498 100644 --- a/appc-inbound/appc-artifact-handler/provider/src/main/java/org/onap/appc/artifact/handler/dbservices/DBService.java +++ b/appc-inbound/appc-artifact-handler/provider/src/main/java/org/onap/appc/artifact/handler/dbservices/DBService.java @@ -259,8 +259,7 @@ public class DBService { String protocol = context.getAttribute(SdcArtifactHandlerConstants.DEVICE_PROTOCOL); String action = context.getAttribute(SdcArtifactHandlerConstants.ACTION); String vnf_type = context.getAttribute(SdcArtifactHandlerConstants.VNF_TYPE); - PropertiesConfiguration conf = new PropertiesConfiguration( - SdcArtifactHandlerConstants.APPC_CONFIG_DIR + "/appc_southbound.properties"); + PropertiesConfiguration conf = new PropertiesConfiguration(System.getenv("APPC_CONFIG_DIR")+"/appc_southbound.properties"); String property =""; if (StringUtils.isNotBlank(vnf_type)) { @@ -330,8 +329,7 @@ public class DBService { && ((protocol == null) || ("".equals(protocol)))) throw new SvcLogicException( "Error While processing refernce File as few or all of parameters VNF_TYPE,PROTOCOL,ACTION are missing "); - PropertiesConfiguration conf = new PropertiesConfiguration( - SdcArtifactHandlerConstants.APPC_CONFIG_DIR + "/appc_southbound.properties"); + PropertiesConfiguration conf = new PropertiesConfiguration(System.getenv("APPC_CONFIG_DIR")+"/appc_southbound.properties"); log.info("is Updating to southbound properties : "+isUpdate); if (conf.containsKey(property + "." + "user")) { if(user!=null && !user.isEmpty())