e405f8680e06882443fbb440ca02224b2d7961ea
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / aai / bo / AaiVnfmInfo.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;
18
19 import java.util.List;
20
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.aai.bo.entity.EsrSystemInfo;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import com.google.gson.annotations.SerializedName;
25
26 public class AaiVnfmInfo {
27         @SerializedName("vnfm-id")
28         @JsonProperty("vnfm-id")
29         private String vnfmId;
30         
31         @SerializedName("vim-id")
32         @JsonProperty("vim-id")
33         private String vimId;
34         
35         @SerializedName("certificate-url")
36         @JsonProperty("certificate-url")
37         private String certificateUrl;
38         
39         @SerializedName("resource-version")
40         @JsonProperty("resource-version")
41         private String resourceVersion;
42         
43         @SerializedName("esr-system-info-list")
44         @JsonProperty("esr-system-info-list")
45         private List<EsrSystemInfo> esrSystemInfoList;
46
47         public String getVnfmId() {
48                 return vnfmId;
49         }
50
51         public void setVnfmId(String vnfmId) {
52                 this.vnfmId = vnfmId;
53         }
54
55         public String getVimId() {
56                 return vimId;
57         }
58
59         public void setVimId(String vimId) {
60                 this.vimId = vimId;
61         }
62
63         public String getCertificateUrl() {
64                 return certificateUrl;
65         }
66
67         public void setCertificateUrl(String certificateUrl) {
68                 this.certificateUrl = certificateUrl;
69         }
70
71         public String getResourceVersion() {
72                 return resourceVersion;
73         }
74
75         public void setResourceVersion(String resourceVersion) {
76                 this.resourceVersion = resourceVersion;
77         }
78
79         public List<EsrSystemInfo> getEsrSystemInfoList() {
80                 return esrSystemInfoList;
81         }
82
83         public void setEsrSystemInfoList(List<EsrSystemInfo> esrSystemInfoList) {
84                 this.esrSystemInfoList = esrSystemInfoList;
85         }
86 }