Fix sdnc controller response parse bug 69/22969/1
authorLuji7 <lu.ji3@zte.com.cn>
Thu, 9 Nov 2017 15:24:41 +0000 (23:24 +0800)
committerLuji7 <lu.ji3@zte.com.cn>
Thu, 9 Nov 2017 15:24:46 +0000 (23:24 +0800)
Change-Id: I0476ce2f9d29ff0f041fb8d3598fe175ff3daf14
Issue-id: USECASEUI-55
Signed-off-by: Luji7 <lu.ji3@zte.com.cn>
server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/SDNCControllerRsp.java

index 3ceb3e7..c9d5bf6 100644 (file)
@@ -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;
     }