Merge "Reorder modifiers"
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / openecomp / mso / bpmn / core / domain / HomingSolution.java
index 611c8df..f0193bc 100644 (file)
@@ -45,6 +45,7 @@ public class HomingSolution extends JsonWrapper implements Serializable  {
        private String aicVersion;
        private String tenant;
        private VnfResource vnf;
+       private List<CloudFlavor> flavors;
        private License license = new License();
 
 
@@ -126,6 +127,17 @@ public class HomingSolution extends JsonWrapper implements Serializable  {
                this.vnf = vnf;
        }
 
+       /**
+        * @return a map<string, string> key is label name, value is any flavor
+        */
+       public List<CloudFlavor> getFlavors() {
+               return flavors;
+       }
+
+       public void setFlavors(List<CloudFlavor> flavors) {
+               this.flavors = flavors;
+       }
+
        public License getLicense() {
                return license;
        }