Add Unit Tests.
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / aai / bo / entity / EsrSystemInfo.java
1 /*
2  * Copyright 2016-2017, Nokia 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
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.bo.entity;
18
19 import com.fasterxml.jackson.annotation.JsonProperty;
20
21 public class EsrSystemInfo {
22         @JsonProperty("esr-system-info-id")
23         private String esrSystemId;
24         
25         @JsonProperty("system-name")
26         private String esrSystemName;
27         
28         @JsonProperty("type")
29         private String type;
30         
31         @JsonProperty("vendor")
32         private String vendor;
33         
34         @JsonProperty("version")
35         private String version;
36         
37         @JsonProperty("service-url")
38         private String serviceUrl;
39         
40         @JsonProperty("user-name")
41         private String userName;
42         
43         @JsonProperty("password")
44         private String password;
45         
46         @JsonProperty("protocal")
47         private String protocal;
48         
49         @JsonProperty("ssl-cacert")
50         private String sslCacert;
51         
52         @JsonProperty("ssl-insecure")
53         private String sslInsecure;
54         
55         @JsonProperty("ip-address")
56         private String ip;
57         
58         @JsonProperty("port")
59         private String port;
60         
61         @JsonProperty("cloud-domain")
62         private String cloudDomain;
63         
64         @JsonProperty("default-tenant")
65         private String defaultTenant;
66
67         public String getEsrSystemId() {
68                 return esrSystemId;
69         }
70
71         public void setEsrSystemId(String esrSystemId) {
72                 this.esrSystemId = esrSystemId;
73         }
74
75         public String getEsrSystemName() {
76                 return esrSystemName;
77         }
78
79         public void setEsrSystemName(String esrSystemName) {
80                 this.esrSystemName = esrSystemName;
81         }
82
83         public String getType() {
84                 return type;
85         }
86
87         public void setType(String type) {
88                 this.type = type;
89         }
90
91         public String getVendor() {
92                 return vendor;
93         }
94
95         public void setVendor(String vendor) {
96                 this.vendor = vendor;
97         }
98
99         public String getVersion() {
100                 return version;
101         }
102
103         public void setVersion(String version) {
104                 this.version = version;
105         }
106
107         public String getServiceUrl() {
108                 return serviceUrl;
109         }
110
111         public void setServiceUrl(String serviceUrl) {
112                 this.serviceUrl = serviceUrl;
113         }
114
115         public String getUserName() {
116                 return userName;
117         }
118
119         public void setUserName(String userName) {
120                 this.userName = userName;
121         }
122
123         public String getPassword() {
124                 return password;
125         }
126
127         public void setPassword(String password) {
128                 this.password = password;
129         }
130
131         public String getProtocal() {
132                 return protocal;
133         }
134
135         public void setProtocal(String protocal) {
136                 this.protocal = protocal;
137         }
138
139         public String getSslCacert() {
140                 return sslCacert;
141         }
142
143         public void setSslCacert(String sslCacert) {
144                 this.sslCacert = sslCacert;
145         }
146
147         public String getSslInsecure() {
148                 return sslInsecure;
149         }
150
151         public void setSslInsecure(String sslInsecure) {
152                 this.sslInsecure = sslInsecure;
153         }
154
155         public String getIp() {
156                 return ip;
157         }
158
159         public void setIp(String ip) {
160                 this.ip = ip;
161         }
162
163         public String getPort() {
164                 return port;
165         }
166
167         public void setPort(String port) {
168                 this.port = port;
169         }
170
171         public String getCloudDomain() {
172                 return cloudDomain;
173         }
174
175         public void setCloudDomain(String cloudDomain) {
176                 this.cloudDomain = cloudDomain;
177         }
178
179         public String getDefaultTenant() {
180                 return defaultTenant;
181         }
182
183         public void setDefaultTenant(String defaultTenant) {
184                 this.defaultTenant = defaultTenant;
185         }
186         
187 }