Change for Quote Issue 97/17997/3
authorSonali Das <sd394g@att.com>
Fri, 6 Oct 2017 18:38:04 +0000 (14:38 -0400)
committerSkip Wonnell <skip@att.com>
Tue, 10 Oct 2017 18:39:28 +0000 (18:39 +0000)
Issue-ID : APPC-221
Change in appc-config-generator appc-artifact-handler

Change-Id: I9abaef2839ca60f10855a61c48fa696be012db5f
Signed-off-by: Sonali Das <sd394g@att.com>
appc-config/appc-config-generator/provider/src/main/java/org/openecomp/sdnc/config/generator/merge/MergeNode.java
appc-config/appc-config-generator/provider/src/main/java/org/openecomp/sdnc/config/generator/tool/EscapeUtils.java
appc-inbound/appc-artifact-handler/provider/src/main/java/org/openecomp/appc/artifact/handler/dbservices/DBService.java

index b7dd328..3369f75 100644 (file)
@@ -1,3 +1,4 @@
+
 /*-
  * ============LICENSE_START=======================================================
  * ONAP : APP-C
@@ -5,7 +6,7 @@
  * Copyright (C) 2017 AT&T Intellectual Property.  All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
+i * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
@@ -28,6 +29,7 @@ import org.apache.commons.lang3.StringUtils;
 import org.openecomp.sdnc.config.generator.ConfigGeneratorConstant;
 import org.openecomp.sdnc.config.generator.tool.JSONTool;
 import org.openecomp.sdnc.config.generator.tool.MergeTool;
+import org.openecomp.sdnc.config.generator.tool.EscapeUtils;
 
 import com.att.eelf.configuration.EELFLogger;
 import com.att.eelf.configuration.EELFManager;
@@ -71,7 +73,9 @@ public class MergeNode implements SvcLogicJavaPlugin {
             if(dataMap != null){
                 String mergedData = MergeTool.mergeMap2TemplateData(templateData, dataMap);
                 if(mergedData != null){
-                    ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_MERGED_DATA,mergedData);
+                   // ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_MERGED_DATA,mergedData);
+                  ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_MERGED_DATA,EscapeUtils.unescapeSql(mergedData));
+                       
                 }
             }
             ctx.setAttribute(responsePrefix + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS, ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
index f783d4c..36afe76 100644 (file)
@@ -36,6 +36,17 @@ public class EscapeUtils {
         String replacementList[] = new String[]{ "''","\\\\"};
         return StringUtils.replaceEach(str,searchList, replacementList);
     }
+    
+    public static String unescapeSql(String str) {
+        if (str == null) {
+            return null;
+        }
+        
+        String searchList[] = new String[] {"''"};
+        String replacementList[] = new String[] {"'"};
+        return StringUtils.replaceEach(str, searchList, replacementList);
+    }
+
 
     // For Generic Purpose
     public static String escapeSQL(String s) {
index 5cc92f3..1dcc65e 100644 (file)
@@ -283,13 +283,13 @@ public class DBService {
         QueryStatus status = null;
         if (isUpdate)
             key = "update " + SdcArtifactHandlerConstants.DB_DEVICE_AUTHENTICATION + " set USER_NAME = $"
-                    + SdcArtifactHandlerConstants.USER_NAME + " , PASSWORD = 'dummy' " + " , PORT_NUMBER = $"
+                    + SdcArtifactHandlerConstants.USER_NAME +/* " , PASSWORD = 'dummy' " +*/ " , PORT_NUMBER = $"
                     + SdcArtifactHandlerConstants.PORT_NUMBER + " where VNF_TYPE = $"
                     + SdcArtifactHandlerConstants.VNF_TYPE;
         else
             key = "insert into " + SdcArtifactHandlerConstants.DB_DEVICE_AUTHENTICATION + " set  VNF_TYPE = $"
                     + SdcArtifactHandlerConstants.VNF_TYPE + " , USER_NAME = $" + SdcArtifactHandlerConstants.USER_NAME
-                    + " , PASSWORD = 'dummy' " + " , PORT_NUMBER = $" + SdcArtifactHandlerConstants.PORT_NUMBER;
+                    +/* " , PASSWORD = 'dummy' " + */ " , PORT_NUMBER = $" + SdcArtifactHandlerConstants.PORT_NUMBER;
 
         if (serviceLogic != null && context != null) {
             status = serviceLogic.save("SQL", false, false, key, null, null, context);