summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/model/Value.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/sdc/dcae/composition/model/Value.java')
-rw-r--r--src/main/java/org/onap/sdc/dcae/composition/model/Value.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/org/onap/sdc/dcae/composition/model/Value.java b/src/main/java/org/onap/sdc/dcae/composition/model/Value.java
new file mode 100644
index 0000000..7b8da57
--- /dev/null
+++ b/src/main/java/org/onap/sdc/dcae/composition/model/Value.java
@@ -0,0 +1,22 @@
+
+package org.onap.sdc.dcae.composition.model;
+
+import java.util.List;
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+
+public class Value {
+
+ @SerializedName("get_property")
+ @Expose
+ private List<String> getProperty = null;
+
+ public List<String> getGetProperty() {
+ return getProperty;
+ }
+
+ public void setGetProperty(List<String> getProperty) {
+ this.getProperty = getProperty;
+ }
+
+}