Realize the query VNFM detail API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / EsrSystemInfo.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.aai;
17
18 import java.io.Serializable;
19
20 import com.google.gson.annotations.SerializedName;
21
22 public class EsrSystemInfo implements Serializable {
23   
24   public static final long serialVersionUID = 1L;
25   
26   @SerializedName("esr-system-info-id")
27   private String esrSystemInfoId;
28   
29   @SerializedName("system-name")
30   private String systemName;
31   
32   @SerializedName("type")
33   private String type;
34   
35   @SerializedName("vendor")
36   private String vendor;
37   
38   @SerializedName("version")
39   private String version;
40   
41   @SerializedName("service-url")
42   private String serviceUrl;
43   
44   @SerializedName("user-name")
45   private String userName;
46   
47   @SerializedName("password")
48   private String password;
49   
50   @SerializedName("system-type")
51   private String systemType;
52   
53   @SerializedName("protocol")
54   private String protocol;
55   
56   @SerializedName("ssl-cassert")
57   private String sslCassert;
58   
59   @SerializedName("ssl-insecure")
60   private Boolean sslInsecure;
61   
62   @SerializedName("ip-address")
63   private String ipAddress;
64   
65   @SerializedName("port")
66   private String port;
67   
68   @SerializedName("cloud-domain")
69   private String cloudDomain;
70   
71   @SerializedName("default-tenant")
72   private String defaultTenant;
73   
74   @SerializedName("passive")
75   private Boolean passive;
76   
77   @SerializedName("remote-path")
78   private String remotePath;
79   
80   @SerializedName("system-status")
81   private String systemStatus;
82   
83   @SerializedName("resource-version")
84   private String resourceVersion;
85
86   public String getEsrSystemInfoId() {
87     return esrSystemInfoId;
88   }
89
90   public void setEsrSystemInfoId(String esrSystemInfoId) {
91     this.esrSystemInfoId = esrSystemInfoId;
92   }
93
94   public String getSystemName() {
95     return systemName;
96   }
97
98   public void setSystemName(String systemName) {
99     this.systemName = systemName;
100   }
101
102   public String getType() {
103     return type;
104   }
105
106   public void setType(String type) {
107     this.type = type;
108   }
109
110   public String getVendor() {
111     return vendor;
112   }
113
114   public void setVendor(String vendor) {
115     this.vendor = vendor;
116   }
117
118   public String getVersion() {
119     return version;
120   }
121
122   public void setVersion(String version) {
123     this.version = version;
124   }
125
126   public String getServiceUrl() {
127     return serviceUrl;
128   }
129
130   public void setServiceUrl(String serviceUrl) {
131     this.serviceUrl = serviceUrl;
132   }
133
134   public String getUserName() {
135     return userName;
136   }
137
138   public void setUserName(String userName) {
139     this.userName = userName;
140   }
141
142   public String getPassword() {
143     return password;
144   }
145
146   public void setPassword(String password) {
147     this.password = password;
148   }
149
150   public String getSystemType() {
151     return systemType;
152   }
153
154   public void setSystemType(String systemType) {
155     this.systemType = systemType;
156   }
157
158   public String getProtocol() {
159     return protocol;
160   }
161
162   public void setProtocol(String protocol) {
163     this.protocol = protocol;
164   }
165
166   public String getSslCassert() {
167     return sslCassert;
168   }
169
170   public void setSslCassert(String sslCassert) {
171     this.sslCassert = sslCassert;
172   }
173
174   public Boolean getSslInsecure() {
175     return sslInsecure;
176   }
177
178   public void setSslInsecure(Boolean sslInsecure) {
179     this.sslInsecure = sslInsecure;
180   }
181
182   public String getIpAddress() {
183     return ipAddress;
184   }
185
186   public void setIpAddress(String ipAddress) {
187     this.ipAddress = ipAddress;
188   }
189
190   public String getPort() {
191     return port;
192   }
193
194   public void setPort(String port) {
195     this.port = port;
196   }
197
198   public String getCloudDomain() {
199     return cloudDomain;
200   }
201
202   public void setCloudDomain(String cloudDomain) {
203     this.cloudDomain = cloudDomain;
204   }
205
206   public String getDefaultTenant() {
207     return defaultTenant;
208   }
209
210   public void setDefaultTenant(String defaultTenant) {
211     this.defaultTenant = defaultTenant;
212   }
213
214   public Boolean getPassive() {
215     return passive;
216   }
217
218   public void setPassive(Boolean passive) {
219     this.passive = passive;
220   }
221
222   public String getRemotePath() {
223     return remotePath;
224   }
225
226   public void setRemotePath(String remotePath) {
227     this.remotePath = remotePath;
228   }
229
230   public String getSystemStatus() {
231     return systemStatus;
232   }
233
234   public void setSystemStatus(String systemStatus) {
235     this.systemStatus = systemStatus;
236   }
237
238   public String getResouceVersion() {
239     return resourceVersion;
240   }
241
242   public void setResouceVersion(String resouceVersion) {
243     this.resourceVersion = resouceVersion;
244   }
245
246 }