aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2019-10-03 09:37:54 +0000
committerGerrit Code Review <gerrit@onap.org>2019-10-03 09:37:54 +0000
commit585494da0b36f1f4758512bc62e59e863be817ee (patch)
tree8434720f340f54fbcafcabcc517dd7d4935e4dbc /vid-app-common/src/main/java/org/onap/vid/aai
parent579e5fa551a9563c5747c6e73a479f81ab947f53 (diff)
parentcbf73dae518c62d5ebd077816e457d5e8db15a85 (diff)
Merge "adding orchestration type to service models view"
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/aai')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/aai/model/ModelVer.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/aai/model/ModelVer.java b/vid-app-common/src/main/java/org/onap/vid/aai/model/ModelVer.java
index f2f6ca50a..099f2449b 100644
--- a/vid-app-common/src/main/java/org/onap/vid/aai/model/ModelVer.java
+++ b/vid-app-common/src/main/java/org/onap/vid/aai/model/ModelVer.java
@@ -32,6 +32,7 @@ public class ModelVer {
private String distributionStatus;
private String resourceVersion;
private String modelDescription;
+ private String orchestrationType;
@@ -89,4 +90,12 @@ public class ModelVer {
this.modelDescription = modelDescription;
}
+ public String getOrchestrationType() {
+ return orchestrationType;
+ }
+
+ @JsonAlias("orchestration-type")
+ public void setOrchestrationType(String orchestrationType) {
+ this.orchestrationType = orchestrationType;
+ }
}