Artifact Handler Updates 47/27747/3
authorDilip kumar Pampana <dp583p@att.com>
Tue, 9 Jan 2018 19:51:52 +0000 (14:51 -0500)
committerPatrick Brady <pb071s@att.com>
Tue, 9 Jan 2018 22:31:54 +0000 (22:31 +0000)
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 <dp583p@att.com>
appc-inbound/appc-artifact-handler/provider/src/main/java/org/onap/appc/artifact/handler/dbservices/DBService.java

index bd2f6df..2788084 100644 (file)
@@ -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())