Add the data transaction of sdnc.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / EsrSystemInfo.java
index b6be9a7..1e1a60e 100644 (file)
  */
 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 EsrSystemInfo {
+  
+  @SerializedName("esr-system-info-id")
+  @JsonProperty("esr-system-info-id")
+  private String esrSystemInfoId;
+  
+  @SerializedName("system-name")
+  @JsonProperty("system-name")
+  private String systemName;
+  
+  @SerializedName("type")
+  @JsonProperty("type")
+  private String type;
+  
+  @SerializedName("vendor")
+  @JsonProperty("vendor")
+  private String vendor;
+  
+  @SerializedName("version")
+  @JsonProperty("version")
+  private String version;
+  
+  @SerializedName("service-url")
+  @JsonProperty("service-url")
+  private String serviceUrl;
+  
+  @SerializedName("user-name")
+  @JsonProperty("user-name")
+  private String userName;
+  
+  @SerializedName("password")
+  @JsonProperty("password")
+  private String password;
+  
+  @SerializedName("system-type")
+  @JsonProperty("system-type")
+  private String systemType;
+  
+  @SerializedName("protocol")
+  @JsonProperty("protocol")
+  private String protocol;
+  
+  @SerializedName("ssl-cassert")
+  @JsonProperty("ssl-cassert")
+  private String sslCassert;
+  
+  @SerializedName("ssl-insecure")
+  @JsonProperty("ssl-insecure")
+  private Boolean sslInsecure;
+  
+  @SerializedName("ip-address")
+  @JsonProperty("ip-address")
+  private String ipAddress;
+  
+  @SerializedName("port")
+  @JsonProperty("port")
+  private String port;
+  
+  @SerializedName("cloud-domain")
+  @JsonProperty("cloud-domain")
+  private String cloudDomain;
+  
+  @SerializedName("default-tenant")
+  @JsonProperty("default-tenant")
+  private String defaultTenant;
+  
+  @SerializedName("passive")
+  @JsonProperty("passive")
+  private Boolean passive;
+  
+  @SerializedName("remote-path")
+  @JsonProperty("remote-path")
+  private String remotePath;
+  
+  @SerializedName("system-status")
+  @JsonProperty("system-status")
+  private String systemStatus;
+  
+  @JsonProperty("resouce-version")
+  private String resouceVersion;
 
-  private ArrayList<AuthInfo> esrSystemInfo;
+  public String getEsrSystemInfoId() {
+    return esrSystemInfoId;
+  }
+
+  public void setEsrSystemInfoId(String esrSystemInfoId) {
+    this.esrSystemInfoId = esrSystemInfoId;
+  }
+
+  public String getSystemName() {
+    return systemName;
+  }
+
+  public void setSystemName(String systemName) {
+    this.systemName = systemName;
+  }
+
+  public String getType() {
+    return type;
+  }
+
+  public void setType(String type) {
+    this.type = type;
+  }
+
+  public String getVendor() {
+    return vendor;
+  }
+
+  public void setVendor(String vendor) {
+    this.vendor = vendor;
+  }
+
+  public String getVersion() {
+    return version;
+  }
+
+  public void setVersion(String version) {
+    this.version = version;
+  }
+
+  public String getServiceUrl() {
+    return serviceUrl;
+  }
+
+  public void setServiceUrl(String serviceUrl) {
+    this.serviceUrl = serviceUrl;
+  }
+
+  public String getUserName() {
+    return userName;
+  }
+
+  public void setUserName(String userName) {
+    this.userName = userName;
+  }
+
+  public String getPassword() {
+    return password;
+  }
+
+  public void setPassword(String password) {
+    this.password = password;
+  }
+
+  public String getSystemType() {
+    return systemType;
+  }
+
+  public void setSystemType(String systemType) {
+    this.systemType = systemType;
+  }
+
+  public String getProtocol() {
+    return protocol;
+  }
+
+  public void setProtocol(String protocol) {
+    this.protocol = protocol;
+  }
+
+  public String getSslCassert() {
+    return sslCassert;
+  }
+
+  public void setSslCassert(String sslCassert) {
+    this.sslCassert = sslCassert;
+  }
+
+  public Boolean getSslInsecure() {
+    return sslInsecure;
+  }
+
+  public void setSslInsecure(Boolean sslInsecure) {
+    this.sslInsecure = sslInsecure;
+  }
+
+  public String getIpAddress() {
+    return ipAddress;
+  }
+
+  public void setIpAddress(String ipAddress) {
+    this.ipAddress = ipAddress;
+  }
+
+  public String getPort() {
+    return port;
+  }
+
+  public void setPort(String port) {
+    this.port = port;
+  }
+
+  public String getCloudDomain() {
+    return cloudDomain;
+  }
 
-  public ArrayList<AuthInfo> getEsrSystemInfo() {
-    return esrSystemInfo;
+  public void setCloudDomain(String cloudDomain) {
+    this.cloudDomain = cloudDomain;
   }
 
-  public void setEsrSystemInfo(ArrayList<AuthInfo> esrSystemInfo) {
-    this.esrSystemInfo = esrSystemInfo;
+  public String getDefaultTenant() {
+    return defaultTenant;
   }
+
+  public void setDefaultTenant(String defaultTenant) {
+    this.defaultTenant = defaultTenant;
+  }
+
+  public Boolean getPassive() {
+    return passive;
+  }
+
+  public void setPassive(Boolean passive) {
+    this.passive = passive;
+  }
+
+  public String getRemotePath() {
+    return remotePath;
+  }
+
+  public void setRemotePath(String remotePath) {
+    this.remotePath = remotePath;
+  }
+
+  public String getSystemStatus() {
+    return systemStatus;
+  }
+
+  public void setSystemStatus(String systemStatus) {
+    this.systemStatus = systemStatus;
+  }
+
+  public String getResouceVersion() {
+    return resouceVersion;
+  }
+
+  public void setResouceVersion(String resouceVersion) {
+    this.resouceVersion = resouceVersion;
+  }
+
 }