diff options
author | Luji7 <lu.ji3@zte.com.cn> | 2017-11-09 23:24:41 +0800 |
---|---|---|
committer | Luji7 <lu.ji3@zte.com.cn> | 2017-11-09 23:24:46 +0800 |
commit | 84fc8dc221558d392998bd9a08085c4297402735 (patch) | |
tree | 2dec726e76aa931f6e14dc80d3da2301bc33a77d | |
parent | 45b4e8caa95b2d6f8227429a79956a7e8836d779 (diff) |
Fix sdnc controller response parse bug
Change-Id: I0476ce2f9d29ff0f041fb8d3598fe175ff3daf14
Issue-id: USECASEUI-55
Signed-off-by: Luji7 <lu.ji3@zte.com.cn>
-rw-r--r-- | server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/SDNCControllerRsp.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/SDNCControllerRsp.java b/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/SDNCControllerRsp.java index 3ceb3e72..c9d5bf6e 100644 --- a/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/SDNCControllerRsp.java +++ b/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/SDNCControllerRsp.java @@ -23,12 +23,12 @@ public class SDNCControllerRsp { private List<SDNCController> esrThirdpartySdncList; - @JsonProperty("esr-thirdparty-sdnc-list") + @JsonProperty("esr-thirdparty-sdnc") public List<SDNCController> getEsrThirdpartySdncList() { return esrThirdpartySdncList; } - @JsonProperty("esr-thirdparty-sdnc-list") + @JsonProperty("esr-thirdparty-sdnc") public void setEsrThirdpartySdncList(List<SDNCController> esrThirdpartySdncList) { this.esrThirdpartySdncList = esrThirdpartySdncList; } |