diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-10-06 14:12:55 +0200 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-10-06 14:12:55 +0200 |
commit | a9d631c0dc2f9d3abfb595066283c4fcbd6b7d4f (patch) | |
tree | 609708427230a8cde00db84c570ff4e7d80f7fb2 /src/main | |
parent | accde3272e9f9f0fc22588dc203230cf21186277 (diff) |
Remove useless method
This method was private and not used so it has been removed
Change-Id: I8d4799dfd499fcc6b046ff59b449d79abd28dc40
Issue-ID: CLAMP-54
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/onap/clamp/clds/client/req/SdcReq.java | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java b/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java index cb8af0a1..640d3b0c 100644 --- a/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java +++ b/src/main/java/org/onap/clamp/clds/client/req/SdcReq.java @@ -94,46 +94,6 @@ public class SdcReq { return updatedBlueprint; } - private static String getUpdatedBlueprintWithConfiguration(RefProp refProp, ModelProperties prop, String yamlValue, - ObjectNode serviceConf) throws IOException { - String blueprint = ""; - Yaml yaml = new Yaml(); - // Serialiaze Yaml file - Map<String, Map> loadedYaml = (Map<String, Map>) yaml.load(yamlValue); - // Get node templates information from Yaml - Map<String, Map> nodeTemplates = loadedYaml.get("node_templates"); - logger.info("value of NodeTemplates:" + nodeTemplates); - // Get Tca Object information from node templates of Yaml - Map<String, Map> tcaObject = nodeTemplates.get("MTCA"); - logger.info("value of Tca:" + tcaObject); - // Get Properties Object information from tca of Yaml - Map<String, String> propsObject = tcaObject.get("properties"); - logger.info("value of PropsObject:" + propsObject); - String deploymentJsonObject = propsObject.get("deployment_JSON"); - logger.info("value of deploymentJson:" + deploymentJsonObject); - - ObjectMapper mapper = new ObjectMapper(); - - ObjectNode deployJsonNode = (ObjectNode) mapper.readTree(deploymentJsonObject); - - // "policyName":"example_model06.ClosedLoop_FRWL_SIG_0538e6f2_8c1b_4656_9999_3501b3c59ad7_Tca_", - String policyNamePrefix = refProp.getStringValue("policy.ms.policyNamePrefix"); - String policyName = prop.getCurrentPolicyScopeAndFullPolicyName(policyNamePrefix); - serviceConf.put("policyName", policyName); - - 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; - } - public static String formatSdcLocationsReq(ModelProperties prop, String artifactName) { ObjectMapper objectMapper = new ObjectMapper(); Global global = prop.getGlobal(); |