summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/model/Property_.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/sdc/dcae/composition/model/Property_.java')
-rw-r--r--src/main/java/org/onap/sdc/dcae/composition/model/Property_.java54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/main/java/org/onap/sdc/dcae/composition/model/Property_.java b/src/main/java/org/onap/sdc/dcae/composition/model/Property_.java
new file mode 100644
index 0000000..15a3145
--- /dev/null
+++ b/src/main/java/org/onap/sdc/dcae/composition/model/Property_.java
@@ -0,0 +1,54 @@
+
+package org.onap.sdc.dcae.composition.model;
+
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+
+public class Property_ {
+
+ @SerializedName("assignment")
+ @Expose
+ private Assignment assignment;
+ @SerializedName("name")
+ @Expose
+ private String name;
+ @SerializedName("type")
+ @Expose
+ private String type;
+ @SerializedName("required")
+ @Expose
+ private Boolean required;
+
+ public Assignment getAssignment() {
+ return assignment;
+ }
+
+ public void setAssignment(Assignment assignment) {
+ this.assignment = assignment;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+ public Boolean getRequired() {
+ return required;
+ }
+
+ public void setRequired(Boolean required) {
+ this.required = required;
+ }
+
+}