Add api-root to the AAI bean 02/83002/2
authorBharath Thiruveedula <bharath.thiruveedula@verizon.com>
Fri, 22 Mar 2019 07:32:04 +0000 (13:02 +0530)
committerBharath Thiruveedula <bharath.thiruveedula@verizon.com>
Fri, 22 Mar 2019 07:57:10 +0000 (13:27 +0530)
Change-Id: I86d15a57726797b5478564de713d07ac60ccf166
Signed-off-by: Bharath Thiruveedula <bharath.thiruveedula@verizon.com>
Issue-ID: USECASEUI-243
Depends-on: I71601180d47fe3de71ddbc07a4c54db7b398f520

server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAISingleOrchestratorRsp.java

index 9652dd3..a5dba40 100644 (file)
@@ -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;
+    }
 }