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