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