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=5adef8e193fc72bdee6d92ce371245f7061e518a;hpb=0f4c91c98e9fe5e403c110a85375778b7fad04fb;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 5adef8e..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 esrSystemInfo; + @SerializedName("esr-system-info") + private ArrayList esrSystemInfo; - public EsrSystemInfo getEsrSystemInfo() { + public ArrayList getEsrSystemInfo() { return esrSystemInfo; } - public void setEsrSystemInfo(EsrSystemInfo esrSystemInfo) { + public void setEsrSystemInfo(ArrayList esrSystemInfo) { this.esrSystemInfo = esrSystemInfo; } }