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