1e1a60ed29ba54f1c27ff974e8643b79bd3b3f46
[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 com.fasterxml.jackson.annotation.JsonProperty;
19 import com.google.gson.annotations.SerializedName;
20
21 public class EsrSystemInfo {
22   
23   @SerializedName("esr-system-info-id")
24   @JsonProperty("esr-system-info-id")
25   private String esrSystemInfoId;
26   
27   @SerializedName("system-name")
28   @JsonProperty("system-name")
29   private String systemName;
30   
31   @SerializedName("type")
32   @JsonProperty("type")
33   private String type;
34   
35   @SerializedName("vendor")
36   @JsonProperty("vendor")
37   private String vendor;
38   
39   @SerializedName("version")
40   @JsonProperty("version")
41   private String version;
42   
43   @SerializedName("service-url")
44   @JsonProperty("service-url")
45   private String serviceUrl;
46   
47   @SerializedName("user-name")
48   @JsonProperty("user-name")
49   private String userName;
50   
51   @SerializedName("password")
52   @JsonProperty("password")
53   private String password;
54   
55   @SerializedName("system-type")
56   @JsonProperty("system-type")
57   private String systemType;
58   
59   @SerializedName("protocol")
60   @JsonProperty("protocol")
61   private String protocol;
62   
63   @SerializedName("ssl-cassert")
64   @JsonProperty("ssl-cassert")
65   private String sslCassert;
66   
67   @SerializedName("ssl-insecure")
68   @JsonProperty("ssl-insecure")
69   private Boolean sslInsecure;
70   
71   @SerializedName("ip-address")
72   @JsonProperty("ip-address")
73   private String ipAddress;
74   
75   @SerializedName("port")
76   @JsonProperty("port")
77   private String port;
78   
79   @SerializedName("cloud-domain")
80   @JsonProperty("cloud-domain")
81   private String cloudDomain;
82   
83   @SerializedName("default-tenant")
84   @JsonProperty("default-tenant")
85   private String defaultTenant;
86   
87   @SerializedName("passive")
88   @JsonProperty("passive")
89   private Boolean passive;
90   
91   @SerializedName("remote-path")
92   @JsonProperty("remote-path")
93   private String remotePath;
94   
95   @SerializedName("system-status")
96   @JsonProperty("system-status")
97   private String systemStatus;
98   
99   @JsonProperty("resouce-version")
100   private String resouceVersion;
101
102   public String getEsrSystemInfoId() {
103     return esrSystemInfoId;
104   }
105
106   public void setEsrSystemInfoId(String esrSystemInfoId) {
107     this.esrSystemInfoId = esrSystemInfoId;
108   }
109
110   public String getSystemName() {
111     return systemName;
112   }
113
114   public void setSystemName(String systemName) {
115     this.systemName = systemName;
116   }
117
118   public String getType() {
119     return type;
120   }
121
122   public void setType(String type) {
123     this.type = type;
124   }
125
126   public String getVendor() {
127     return vendor;
128   }
129
130   public void setVendor(String vendor) {
131     this.vendor = vendor;
132   }
133
134   public String getVersion() {
135     return version;
136   }
137
138   public void setVersion(String version) {
139     this.version = version;
140   }
141
142   public String getServiceUrl() {
143     return serviceUrl;
144   }
145
146   public void setServiceUrl(String serviceUrl) {
147     this.serviceUrl = serviceUrl;
148   }
149
150   public String getUserName() {
151     return userName;
152   }
153
154   public void setUserName(String userName) {
155     this.userName = userName;
156   }
157
158   public String getPassword() {
159     return password;
160   }
161
162   public void setPassword(String password) {
163     this.password = password;
164   }
165
166   public String getSystemType() {
167     return systemType;
168   }
169
170   public void setSystemType(String systemType) {
171     this.systemType = systemType;
172   }
173
174   public String getProtocol() {
175     return protocol;
176   }
177
178   public void setProtocol(String protocol) {
179     this.protocol = protocol;
180   }
181
182   public String getSslCassert() {
183     return sslCassert;
184   }
185
186   public void setSslCassert(String sslCassert) {
187     this.sslCassert = sslCassert;
188   }
189
190   public Boolean getSslInsecure() {
191     return sslInsecure;
192   }
193
194   public void setSslInsecure(Boolean sslInsecure) {
195     this.sslInsecure = sslInsecure;
196   }
197
198   public String getIpAddress() {
199     return ipAddress;
200   }
201
202   public void setIpAddress(String ipAddress) {
203     this.ipAddress = ipAddress;
204   }
205
206   public String getPort() {
207     return port;
208   }
209
210   public void setPort(String port) {
211     this.port = port;
212   }
213
214   public String getCloudDomain() {
215     return cloudDomain;
216   }
217
218   public void setCloudDomain(String cloudDomain) {
219     this.cloudDomain = cloudDomain;
220   }
221
222   public String getDefaultTenant() {
223     return defaultTenant;
224   }
225
226   public void setDefaultTenant(String defaultTenant) {
227     this.defaultTenant = defaultTenant;
228   }
229
230   public Boolean getPassive() {
231     return passive;
232   }
233
234   public void setPassive(Boolean passive) {
235     this.passive = passive;
236   }
237
238   public String getRemotePath() {
239     return remotePath;
240   }
241
242   public void setRemotePath(String remotePath) {
243     this.remotePath = remotePath;
244   }
245
246   public String getSystemStatus() {
247     return systemStatus;
248   }
249
250   public void setSystemStatus(String systemStatus) {
251     this.systemStatus = systemStatus;
252   }
253
254   public String getResouceVersion() {
255     return resouceVersion;
256   }
257
258   public void setResouceVersion(String resouceVersion) {
259     this.resouceVersion = resouceVersion;
260   }
261
262 }