Realize the query VNFM detail API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / EsrSystemInfoList.java
index 535e5db..9306b98 100644 (file)
  */
 package org.onap.aai.esr.entity.aai;
 
-public class EsrSystemInfoList {
+import java.io.Serializable;
+import java.util.ArrayList;
 
-  private EsrSystemInfo esrSystemInfoList;
+import com.google.gson.annotations.SerializedName;
 
-  public EsrSystemInfo getEsrSystemInfoList() {
-    return esrSystemInfoList;
+public class EsrSystemInfoList implements Serializable {
+
+  public static final long serialVersionUID = 1L;
+  
+  @SerializedName("esr-system-info")
+  private ArrayList<EsrSystemInfo> esrSystemInfo;
+
+  public ArrayList<EsrSystemInfo> getEsrSystemInfo() {
+    return esrSystemInfo;
   }
 
-  public void setEsrSystemInfoList(EsrSystemInfo esrSystemInfoList) {
-    this.esrSystemInfoList = esrSystemInfoList;
+  public void setEsrSystemInfo(ArrayList<EsrSystemInfo> esrSystemInfo) {
+    this.esrSystemInfo = esrSystemInfo;
   }
 }