summaryrefslogtreecommitdiffstats
path: root/esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java')
-rw-r--r--esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java30
1 files changed, 20 insertions, 10 deletions
diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java b/esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java
index 0850354..3d6a305 100644
--- a/esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java
+++ b/esr-mgr/src/main/java/org/onap/aai/esr/entity/rest/VimRegisterInfo.java
@@ -1,5 +1,5 @@
/**
- * Copyright 2016-2017 ZTE Corporation.
+ * Copyright 2016-2018 ZTE Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,9 +31,11 @@ public class VimRegisterInfo {
private String ownerDefinedType;
private String cloudZone;
-
+
private String complexName;
+ private String physicalLocationId;
+
private String cloudExtraInfo;
private String status;
@@ -88,14 +90,6 @@ public class VimRegisterInfo {
this.cloudZone = cloudZone;
}
- public String getComplexName() {
- return complexName;
- }
-
- public void setComplexName(String complexName) {
- this.complexName = complexName;
- }
-
public String getCloudExtraInfo() {
return cloudExtraInfo;
}
@@ -120,4 +114,20 @@ public class VimRegisterInfo {
this.status = status;
}
+ public String getPhysicalLocationId() {
+ return physicalLocationId;
+ }
+
+ public void setPhysicalLocationId(String physicalLocationId) {
+ this.physicalLocationId = physicalLocationId;
+ }
+
+ public String getComplexName() {
+ return complexName;
+ }
+
+ public void setComplexName(String complexName) {
+ this.complexName = complexName;
+ }
+
}