diff options
author | Deven <dp023n@att.com> | 2020-02-27 14:33:33 -0500 |
---|---|---|
committer | Deven Panchal <dp023n@att.com> | 2020-02-28 17:32:31 +0000 |
commit | 7666d2a36849f88e917d87abec2e177dac500191 (patch) | |
tree | 93c5788b20ff964ae38747932badcfb557aa4d16 /mod/runtimeapi/runtime-core/src/main | |
parent | 77f2732015a0ab038bf6be6afaf924b827f44835 (diff) |
Modify Runtime for new bpgen dependency
Modify Runtime core and web components to build with the new bpgen dependency
Issue-ID: DCAEGEN2-2091
Change-Id: Id9dac8f4cc24a39dac2dac8dce7a84b54c1e1229
Signed-off-by: Deven <dp023n@att.com>
Diffstat (limited to 'mod/runtimeapi/runtime-core/src/main')
-rw-r--r-- | mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnap.java (renamed from mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnapDublin.java) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnapDublin.java b/mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnap.java index 2225971..c12b970 100644 --- a/mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnapDublin.java +++ b/mod/runtimeapi/runtime-core/src/main/java/org/onap/dcae/runtime/core/blueprint_creator/BlueprintCreatorOnap.java @@ -25,7 +25,7 @@ import org.yaml.snakeyaml.Yaml; import java.util.Map; -public class BlueprintCreatorOnapDublin implements BlueprintCreator{ +public class BlueprintCreatorOnap implements BlueprintCreator{ private String topicUrl; private String importFilePath; @@ -42,7 +42,7 @@ public class BlueprintCreatorOnapDublin implements BlueprintCreator{ public String createBlueprint(String componentSpecString) { ComponentSpec componentSpec = new ComponentSpec(); componentSpec.createComponentSpecFromString(componentSpecString); - Blueprint blueprint = new Blueprint().createBlueprint(componentSpec,"",'o',importFilePath); + Blueprint blueprint = new Blueprint().createBlueprint(componentSpec,"",'o',importFilePath,""); return blueprint.blueprintToString(); } |