aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java')
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java b/server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java
index 50e5ac39..55eb84a2 100644
--- a/server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java
+++ b/server/src/main/java/org/onap/usecaseui/server/bean/intent/CCVPNInstance.java
@@ -62,6 +62,12 @@ public class CCVPNInstance implements Serializable {
@Column(name = "delete_state")
private int deleteState;
+ @Column(name = "protection_cloud_point_name")
+ private String protectionCloudPointName;
+
+ @Column(name = "protection_type")
+ private String protectionType;
+
public CCVPNInstance() {
}
@@ -169,4 +175,20 @@ public class CCVPNInstance implements Serializable {
public void setProtectStatus(int protectStatus) {
this.protectStatus = protectStatus;
}
+
+ public String getProtectionCloudPointName() {
+ return protectionCloudPointName;
+ }
+
+ public void setProtectionCloudPointName(String protectionCloudPointName) {
+ this.protectionCloudPointName = protectionCloudPointName;
+ }
+
+ public String getProtectionType() {
+ return protectionType;
+ }
+
+ public void setProtectionType(String protectionType) {
+ this.protectionType = protectionType;
+ }
} \ No newline at end of file