Realize update registered VIM.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / EsrSystemInfoList.java
index 535e5db..9df333a 100644 (file)
  */
 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> esrSystemInfo;
 
-  public EsrSystemInfo getEsrSystemInfoList() {
-    return esrSystemInfoList;
+  public ArrayList<EsrSystemInfo> getEsrSystemInfo() {
+    return esrSystemInfo;
   }
 
-  public void setEsrSystemInfoList(EsrSystemInfo esrSystemInfoList) {
-    this.esrSystemInfoList = esrSystemInfoList;
+  public void setEsrSystemInfo(ArrayList<EsrSystemInfo> esrSystemInfo) {
+    this.esrSystemInfo = esrSystemInfo;
   }
 }