Merge from ECOMP's repository
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / GroupProperties.java
index c7ca600..d8a57e4 100644 (file)
@@ -5,6 +5,7 @@ public class GroupProperties {
     private Integer maxCountInstances;
     private Integer initialCount;
     private String vfModuleLabel;
+    private boolean baseModule = false;
 
     public String getVfModuleLabel() {
         return vfModuleLabel;
@@ -30,6 +31,14 @@ public class GroupProperties {
         this.maxCountInstances = maxCountInstances;
     }
 
+    public boolean getBaseModule() {
+        return baseModule;
+    }
+
+    public void setBaseModule(boolean baseModule) {
+        this.baseModule = baseModule;
+    }
+
     public Integer getInitialCount() {
         return initialCount;
     }