summaryrefslogtreecommitdiffstats
path: root/blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
diff options
context:
space:
mode:
authorms236b <ms236b@att.com>2019-08-01 13:36:13 -0400
committerms236b <ms236b@att.com>2019-08-19 09:26:02 -0400
commit76fdf3ea035615915575d488ca3f6606f4c941da (patch)
treef91b05142a7acf9f3b48d50346ce38638f3cfe10 /blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
parentc5bfc898e79431603cbd8fda93fc67efd2aad77f (diff)
Fixed the streams and the imports issues
Fixed the issues with the streams and with the imports and space Issue-ID: DCAEGEN2-1517 Change-Id: I856f1fa3fc47faea19388096f739519db0fe41d8 Signed-off-by: ms236b <ms236b@att.com>
Diffstat (limited to 'blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java')
-rw-r--r--blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java b/blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
index 5159814..6d5b7d7 100644
--- a/blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
+++ b/blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
@@ -39,8 +39,8 @@ import lombok.Setter;
@Setter
public class Appconfig {
private CallsObj[] service_calls;
- private TreeMap<String, DmaapObj> stream_publishes;
- private TreeMap<String, DmaapObj> stream_subcribes;
+ private TreeMap<String, DmaapObj> streams_publishes;
+ private TreeMap<String, DmaapObj> streams_subscribes;
private TreeMap<String, Object> params;
@JsonAnyGetter
@@ -106,8 +106,8 @@ public class Appconfig {
}
}
- this.setStream_publishes(streamPublishes);
- this.setStream_subcribes(streamSubscribes);
+ this.setStreams_publishes(streamPublishes);
+ this.setStreams_subscribes(streamSubscribes);
//set the parameters into the appconfig
TreeMap<String, Object> parameters = new TreeMap<String, Object>();