summaryrefslogtreecommitdiffstats
path: root/blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
diff options
context:
space:
mode:
authorTony Hansen <tony@att.com>2019-08-22 15:51:54 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-22 15:51:54 +0000
commit68dd2713e43dd0e42df9d430e83500faab4449ac (patch)
tree23e80bb0dd972e1ac1b17d19968756ae13f67fea /blueprint-generator/src/main/java/org/onap/blueprintgenerator/models/blueprint/Appconfig.java
parent69cb115c8bde2fe33e7611681dd9b306eac790c7 (diff)
parent76fdf3ea035615915575d488ca3f6606f4c941da (diff)
Merge "Fixed the streams and the imports issues"5.0.1-ONAPelalto
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>();