Add the EMS data transformation function.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / aai / AuthInfo.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 public class AuthInfo {
19   
20   private String esrSystemInfoId;
21   
22   private String systemName;
23   
24   private String type;
25   
26   private String vendor;
27   
28   private String version;
29   
30   private String serviceUrl;
31   
32   private String userName;
33   
34   private String password;
35   
36   private String systemType;
37   
38   private String protocal;
39   
40   private String sslCassert;
41   
42   private Boolean sslInsecure;
43   
44   private String ipAddress;
45   
46   private String port;
47   
48   private String cloudDomain;
49   
50   private String defaultTenant;
51   
52   private Boolean passive;
53   
54   private String remotePath;
55   
56   private String systemStatus;
57   
58   private String resouceVersion;
59
60   public String getEsrSystemInfoId() {
61     return esrSystemInfoId;
62   }
63
64   public void setEsrSystemInfoId(String esrSystemInfoId) {
65     this.esrSystemInfoId = esrSystemInfoId;
66   }
67
68   public String getSystemName() {
69     return systemName;
70   }
71
72   public void setSystemName(String systemName) {
73     this.systemName = systemName;
74   }
75
76   public String getType() {
77     return type;
78   }
79
80   public void setType(String type) {
81     this.type = type;
82   }
83
84   public String getVendor() {
85     return vendor;
86   }
87
88   public void setVendor(String vendor) {
89     this.vendor = vendor;
90   }
91
92   public String getVersion() {
93     return version;
94   }
95
96   public void setVersion(String version) {
97     this.version = version;
98   }
99
100   public String getServiceUrl() {
101     return serviceUrl;
102   }
103
104   public void setServiceUrl(String serviceUrl) {
105     this.serviceUrl = serviceUrl;
106   }
107
108   public String getUserName() {
109     return userName;
110   }
111
112   public void setUserName(String userName) {
113     this.userName = userName;
114   }
115
116   public String getPassword() {
117     return password;
118   }
119
120   public void setPassword(String password) {
121     this.password = password;
122   }
123
124   public String getSystemType() {
125     return systemType;
126   }
127
128   public void setSystemType(String systemType) {
129     this.systemType = systemType;
130   }
131
132   public String getProtocal() {
133     return protocal;
134   }
135
136   public void setProtocal(String protocal) {
137     this.protocal = protocal;
138   }
139
140   public String getSslCassert() {
141     return sslCassert;
142   }
143
144   public void setSslCassert(String sslCassert) {
145     this.sslCassert = sslCassert;
146   }
147
148   public String getIpAddress() {
149     return ipAddress;
150   }
151
152   public void setIpAddress(String ipAddress) {
153     this.ipAddress = ipAddress;
154   }
155
156   public String getPort() {
157     return port;
158   }
159
160   public void setPort(String port) {
161     this.port = port;
162   }
163
164   public String getCloudDomain() {
165     return cloudDomain;
166   }
167
168   public void setCloudDomain(String cloudDomain) {
169     this.cloudDomain = cloudDomain;
170   }
171
172   public String getDefaultTenant() {
173     return defaultTenant;
174   }
175
176   public void setDefaultTenant(String defaultTenant) {
177     this.defaultTenant = defaultTenant;
178   }
179
180   public String getSystemStatus() {
181     return systemStatus;
182   }
183
184   public void setSystemStatus(String systemStatus) {
185     this.systemStatus = systemStatus;
186   }
187
188   public Boolean getSslInsecure() {
189     return sslInsecure;
190   }
191
192   public void setSslInsecure(Boolean sslInsecure) {
193     this.sslInsecure = sslInsecure;
194   }
195
196   public String getResouceVersion() {
197     return resouceVersion;
198   }
199
200   public void setResouceVersion(String resouceVersion) {
201     this.resouceVersion = resouceVersion;
202   }
203
204   public Boolean getPassive() {
205     return passive;
206   }
207
208   public void setPassive(Boolean passive) {
209     this.passive = passive;
210   }
211
212   public String getRemotePath() {
213     return remotePath;
214   }
215
216   public void setRemotePath(String remotePath) {
217     this.remotePath = remotePath;
218   }
219   
220 }