aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorBharath Thiruveedula <bharath.thiruveedula@verizon.com>2019-03-22 13:02:04 +0530
committerBharath Thiruveedula <bharath.thiruveedula@verizon.com>2019-03-22 13:27:10 +0530
commitb4f16548fea80b4030919fbe38520d7eaa68352b (patch)
tree7ccd927427098fe9bc2e7b46a98f5b0c27582d85 /server
parent88c94b5d118d06f4100b389ff4431c7a6bc44873 (diff)
Add api-root to the AAI bean
Change-Id: I86d15a57726797b5478564de713d07ac60ccf166 Signed-off-by: Bharath Thiruveedula <bharath.thiruveedula@verizon.com> Issue-ID: USECASEUI-243 Depends-on: I71601180d47fe3de71ddbc07a4c54db7b398f520
Diffstat (limited to 'server')
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAISingleOrchestratorRsp.java11
1 files changed, 9 insertions, 2 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAISingleOrchestratorRsp.java b/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAISingleOrchestratorRsp.java
index 9652dd36..a5dba407 100644
--- a/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAISingleOrchestratorRsp.java
+++ b/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAISingleOrchestratorRsp.java
@@ -27,6 +27,9 @@ public class AAISingleOrchestratorRsp {
@JsonProperty("resource-version")
private String resourceVersion;
+ @JsonProperty("api-root")
+ private String apiRoot;
+
@JsonProperty("esr-system-info-list")
private EsrSystemInfoList esrSystemInfoList;
@@ -54,7 +57,11 @@ public class AAISingleOrchestratorRsp {
this.esrSystemInfoList = esrSystemInfoList;
}
+ public String getApiRoot() {
+ return apiRoot;
+ }
-
-
+ public void setApiRoot(String apiRoot) {
+ this.apiRoot = apiRoot;
+ }
}