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;fp=esr-mgr%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faai%2Fesr%2Fentity%2Faai%2FEsrSystemInfoList.java;h=71256ff12d2a2801799577b71ee443383c99c026;hb=0fc3e68fe98646d2e814b0e7597ffae7f731b586;hp=5adef8e193fc72bdee6d92ce371245f7061e518a;hpb=bc65f229b176269aaf9fe0cee5cf5f9e42a5d455;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..71256ff 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; +import java.util.ArrayList; + +import com.fasterxml.jackson.annotation.JsonProperty; +import com.google.gson.annotations.SerializedName; + public class EsrSystemInfoList { - private EsrSystemInfo esrSystemInfo; + @SerializedName("esr-system-info") + @JsonProperty("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; } }