Add entity definition for external system.
[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 String sslInsecure;
43   
44   private String ipAddress;
45   
46   private String port;
47   
48   private String cloudDomain;
49   
50   private String defaultTenant;
51   
52   private String systemStatus;
53
54   public String getEsrSystemInfoId() {
55     return esrSystemInfoId;
56   }
57
58   public void setEsrSystemInfoId(String esrSystemInfoId) {
59     this.esrSystemInfoId = esrSystemInfoId;
60   }
61
62   public String getSystemName() {
63     return systemName;
64   }
65
66   public void setSystemName(String systemName) {
67     this.systemName = systemName;
68   }
69
70   public String getType() {
71     return type;
72   }
73
74   public void setType(String type) {
75     this.type = type;
76   }
77
78   public String getVendor() {
79     return vendor;
80   }
81
82   public void setVendor(String vendor) {
83     this.vendor = vendor;
84   }
85
86   public String getVersion() {
87     return version;
88   }
89
90   public void setVersion(String version) {
91     this.version = version;
92   }
93
94   public String getServiceUrl() {
95     return serviceUrl;
96   }
97
98   public void setServiceUrl(String serviceUrl) {
99     this.serviceUrl = serviceUrl;
100   }
101
102   public String getUserName() {
103     return userName;
104   }
105
106   public void setUserName(String userName) {
107     this.userName = userName;
108   }
109
110   public String getPassword() {
111     return password;
112   }
113
114   public void setPassword(String password) {
115     this.password = password;
116   }
117
118   public String getSystemType() {
119     return systemType;
120   }
121
122   public void setSystemType(String systemType) {
123     this.systemType = systemType;
124   }
125
126   public String getProtocal() {
127     return protocal;
128   }
129
130   public void setProtocal(String protocal) {
131     this.protocal = protocal;
132   }
133
134   public String getSslCassert() {
135     return sslCassert;
136   }
137
138   public void setSslCassert(String sslCassert) {
139     this.sslCassert = sslCassert;
140   }
141
142   public String getSslInsecure() {
143     return sslInsecure;
144   }
145
146   public void setSslInsecure(String sslInsecure) {
147     this.sslInsecure = sslInsecure;
148   }
149
150   public String getIpAddress() {
151     return ipAddress;
152   }
153
154   public void setIpAddress(String ipAddress) {
155     this.ipAddress = ipAddress;
156   }
157
158   public String getPort() {
159     return port;
160   }
161
162   public void setPort(String port) {
163     this.port = port;
164   }
165
166   public String getCloudDomain() {
167     return cloudDomain;
168   }
169
170   public void setCloudDomain(String cloudDomain) {
171     this.cloudDomain = cloudDomain;
172   }
173
174   public String getDefaultTenant() {
175     return defaultTenant;
176   }
177
178   public void setDefaultTenant(String defaultTenant) {
179     this.defaultTenant = defaultTenant;
180   }
181
182   public String getSystemStatus() {
183     return systemStatus;
184   }
185
186   public void setSystemStatus(String systemStatus) {
187     this.systemStatus = systemStatus;
188   }
189
190 }