aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/model/VfcInstanceGroupProperties.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/model/VfcInstanceGroupProperties.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/model/VfcInstanceGroupProperties.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/model/VfcInstanceGroupProperties.java b/vid-app-common/src/main/java/org/onap/vid/model/VfcInstanceGroupProperties.java
new file mode 100644
index 000000000..d6c04618d
--- /dev/null
+++ b/vid-app-common/src/main/java/org/onap/vid/model/VfcInstanceGroupProperties.java
@@ -0,0 +1,44 @@
+package org.onap.vid.model;
+
+public class VfcInstanceGroupProperties {
+
+ private String vfcParentPortRole;
+ private String networkCollectionFunction;
+ private String vfcInstanceGroupFunction;
+ private String subinterfaceRole;
+
+ public String getVfcParentPortRole() {
+ return vfcParentPortRole;
+ }
+
+ public void setVfcParentPortRole(String vfcParentPortRole) {
+ this.vfcParentPortRole = vfcParentPortRole;
+ }
+
+ public String getNetworkCollectionFunction() {
+ return networkCollectionFunction;
+ }
+
+ public void setNetworkCollectionFunction(String networkCollectionFunction) {
+ this.networkCollectionFunction = networkCollectionFunction;
+ }
+
+ public String getVfcInstanceGroupFunction() {
+ return vfcInstanceGroupFunction;
+ }
+
+ public void setVfcInstanceGroupFunction(String vfcInstanceGroupFunction) {
+ this.vfcInstanceGroupFunction = vfcInstanceGroupFunction;
+ }
+
+ public String getSubinterfaceRole() {
+ return subinterfaceRole;
+ }
+
+ public void setSubinterfaceRole(String subinterfaceRole) {
+ this.subinterfaceRole = subinterfaceRole;
+ }
+
+
+
+}