Update query vnfm from ESR interface
[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 import com.google.gson.annotations.SerializedName;
21
22 public class EsrSystemInfo {
23         @JsonProperty("esr-system-info-id")
24         @SerializedName("esr-system-info-id")
25         private String esrSystemId;
26         
27         @JsonProperty("system-name")
28         @SerializedName("system-name")
29         private String esrSystemName;
30         
31         @JsonProperty("type")
32         @SerializedName("type")
33         private String type;
34         
35         @JsonProperty("vendor")
36         @SerializedName("vendor")
37         private String vendor;
38         
39         @JsonProperty("version")
40         @SerializedName("version")
41         private String version;
42         
43         @JsonProperty("service-url")
44         @SerializedName("service-url")
45         private String serviceUrl;
46         
47         @JsonProperty("user-name")
48         @SerializedName("user-name")
49         private String userName;
50         
51         @JsonProperty("password")
52         @SerializedName("password")
53         private String password;
54         
55         @JsonProperty("system-type")
56         @SerializedName("system-type")
57         private String systemType;
58         
59         @JsonProperty("resource-version")
60         @SerializedName("resource-version")
61         private String resourceVersion;
62         
63         public String getEsrSystemId() {
64                 return esrSystemId;
65         }
66
67         public void setEsrSystemId(String esrSystemId) {
68                 this.esrSystemId = esrSystemId;
69         }
70
71         public String getEsrSystemName() {
72                 return esrSystemName;
73         }
74
75         public void setEsrSystemName(String esrSystemName) {
76                 this.esrSystemName = esrSystemName;
77         }
78
79         public String getType() {
80                 return type;
81         }
82
83         public void setType(String type) {
84                 this.type = type;
85         }
86
87         public String getVendor() {
88                 return vendor;
89         }
90
91         public void setVendor(String vendor) {
92                 this.vendor = vendor;
93         }
94
95         public String getVersion() {
96                 return version;
97         }
98
99         public void setVersion(String version) {
100                 this.version = version;
101         }
102
103         public String getServiceUrl() {
104                 return serviceUrl;
105         }
106
107         public void setServiceUrl(String serviceUrl) {
108                 this.serviceUrl = serviceUrl;
109         }
110
111         public String getUserName() {
112                 return userName;
113         }
114
115         public void setUserName(String userName) {
116                 this.userName = userName;
117         }
118
119         public String getPassword() {
120                 return password;
121         }
122
123         public void setPassword(String password) {
124                 this.password = password;
125         }
126
127         public String getSystemType() {
128                 return systemType;
129         }
130
131         public void setSystemType(String systemType) {
132                 this.systemType = systemType;
133         }
134
135         public String getResourceVersion() {
136                 return resourceVersion;
137         }
138
139         public void setResourceVersion(String resourceVersion) {
140                 this.resourceVersion = resourceVersion;
141         }
142 }