Remove useless method 29/17429/1
authorDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Fri, 6 Oct 2017 12:05:10 +0000 (14:05 +0200)
committerDeterme, Sebastien (sd378r) <sd378r@intl.att.com>
Fri, 6 Oct 2017 12:05:10 +0000 (14:05 +0200)
One method one private and not used anymore in the code so it
has been removed

Change-Id: Id6754eb446a781b691184ace07a68ce26c8ed684
Issue-ID: CLAMP-54
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
src/main/java/org/onap/clamp/clds/client/req/SdcReq.java

index 9c3f261..cb8af0a 100644 (file)
@@ -124,6 +124,11 @@ public class SdcReq {
         deployJsonNode.set("configuration", serviceConf);
         propsObject.put("deployment_JSON", deployJsonNode.toString());
         blueprint = yaml.dump(loadedYaml);
+        // To remove new lines in blueprint for deployment_json
+        String[] deploymentJson = blueprint.split(" deployment_JSON:");
+        String beforeJson = deploymentJson[0];
+        String afterJson = deploymentJson[1].replaceAll("\\s+", " ");
+        blueprint = beforeJson + " deployment_JSON:" + afterJson;
         logger.info("value of updated Yaml File:" + blueprint);
 
         return blueprint;
@@ -207,7 +212,6 @@ public class SdcReq {
                                 String svcUrl = baseUrl + "/" + serviceUUID + "/resourceInstances/"
                                         + normalizedResourceInstanceName + "/artifacts";
                                 urlList.add(svcUrl);
-
                             }
                         }
                     }