X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrSystemInfoList.java;h=9df333a539bc64acb7efa563d14a0e147c38c23d;hb=2c0e80cac349b7364d5b2b1f0b9650a4cd95ca18;hp=535e5db08b4cbfb89abc74eafcd189348366192f;hpb=ed8d8775c8d87601bceb9fe98715de1a4167287c;p=aai%2Fesr-server.git diff --git a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java index 535e5db..9df333a 100644 --- a/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java +++ b/esr-mgr/src/main/java/org/onap/aai/esr/entity/aai/EsrSystemInfoList.java @@ -15,15 +15,20 @@ */ package org.onap.aai.esr.entity.aai; +import java.util.ArrayList; + +import com.google.gson.annotations.SerializedName; + public class EsrSystemInfoList { - private EsrSystemInfo esrSystemInfoList; + @SerializedName("esr-system-info") + private ArrayList esrSystemInfo; - public EsrSystemInfo getEsrSystemInfoList() { - return esrSystemInfoList; + public ArrayList getEsrSystemInfo() { + return esrSystemInfo; } - public void setEsrSystemInfoList(EsrSystemInfo esrSystemInfoList) { - this.esrSystemInfoList = esrSystemInfoList; + public void setEsrSystemInfo(ArrayList esrSystemInfo) { + this.esrSystemInfo = esrSystemInfo; } }