c7ca60069a8fe1b264da129ae389e7dbf398a1b3
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / GroupProperties.java
1 package org.onap.vid.model;
2
3 public class GroupProperties {
4     private Integer minCountInstances;
5     private Integer maxCountInstances;
6     private Integer initialCount;
7     private String vfModuleLabel;
8
9     public String getVfModuleLabel() {
10         return vfModuleLabel;
11     }
12
13     public void setVfModuleLabel(String vfModuleLabel) {
14         this.vfModuleLabel = vfModuleLabel;
15     }
16
17     public Integer getMinCountInstances() {
18         return minCountInstances;
19     }
20
21     public void setMinCountInstances(Integer minCountInstances) {
22         this.minCountInstances = minCountInstances;
23     }
24
25     public Integer getMaxCountInstances() {
26         return maxCountInstances;
27     }
28
29     public void setMaxCountInstances(Integer maxCountInstances) {
30         this.maxCountInstances = maxCountInstances;
31     }
32
33     public Integer getInitialCount() {
34         return initialCount;
35     }
36
37     public void setInitialCount(Integer initialCount) {
38         this.initialCount = initialCount;
39     }
40 }