summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/model/Capability__.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/sdc/dcae/composition/model/Capability__.java')
-rw-r--r--src/main/java/org/onap/sdc/dcae/composition/model/Capability__.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/org/onap/sdc/dcae/composition/model/Capability__.java b/src/main/java/org/onap/sdc/dcae/composition/model/Capability__.java
new file mode 100644
index 0000000..8ef044a
--- /dev/null
+++ b/src/main/java/org/onap/sdc/dcae/composition/model/Capability__.java
@@ -0,0 +1,32 @@
+
+package org.onap.sdc.dcae.composition.model;
+
+import com.google.gson.annotations.Expose;
+import com.google.gson.annotations.SerializedName;
+
+public class Capability__ {
+
+ @SerializedName("name")
+ @Expose
+ private String name;
+ @SerializedName("type")
+ @Expose
+ private Type type;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public Type getType() {
+ return type;
+ }
+
+ public void setType(Type type) {
+ this.type = type;
+ }
+
+}