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=452cf734a6bec4565e6d650b7f3c8207a295ec69;hb=709944ea341a3b4da53899114b85afa590028d0f;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..452cf73 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,22 @@ */ package org.onap.aai.esr.entity.aai; -public class EsrSystemInfoList { +import java.io.Serializable; +import java.util.List; +import com.google.gson.annotations.SerializedName; - private EsrSystemInfo esrSystemInfoList; +public class EsrSystemInfoList implements Serializable { - public EsrSystemInfo getEsrSystemInfoList() { - return esrSystemInfoList; - } + public static final long serialVersionUID = 1L; - public void setEsrSystemInfoList(EsrSystemInfo esrSystemInfoList) { - this.esrSystemInfoList = esrSystemInfoList; - } + @SerializedName("esr-system-info") + private List esrSystemInfo; + + public List getEsrSystemInfo() { + return esrSystemInfo; + } + + public void setEsrSystemInfo(List esrSystemInfo) { + this.esrSystemInfo = esrSystemInfo; + } }