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