bf6608dfd4ff5c9dc66654ad9cae5f7c7b1c4b8f
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nslcm / bo / VnfmInfo.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.nslcm.bo;
18
19 import com.fasterxml.jackson.annotation.JsonProperty;
20
21 public class VnfmInfo {
22         @JsonProperty("vnfmId")
23         private String vnfmId;
24         
25         @JsonProperty("name")
26         private String name;
27         
28         @JsonProperty("type")
29         private String type;
30         
31         @JsonProperty("url")
32         private String url;
33         
34         @JsonProperty("userName")
35         private String userName;
36         
37         @JsonProperty("password")
38         private String password;
39         
40         @JsonProperty("vimId")
41         private String vimId;
42         
43         @JsonProperty("vendor")
44         private String vendor;
45         
46         @JsonProperty("version")
47         private String version;
48         
49         @JsonProperty("description")
50         private String description;
51         
52         @JsonProperty("certificateUrl")
53         private String certificateUrl;
54         
55         @JsonProperty("createTime")
56         private String createTime;
57
58         public String getVnfmId() {
59                 return vnfmId;
60         }
61
62         public void setVnfmId(String vnfmId) {
63                 this.vnfmId = vnfmId;
64         }
65
66         public String getName() {
67                 return name;
68         }
69
70         public void setName(String name) {
71                 this.name = name;
72         }
73
74         public String getType() {
75                 return type;
76         }
77
78         public void setType(String type) {
79                 this.type = type;
80         }
81
82         public String getUrl() {
83                 return url;
84         }
85
86         public void setUrl(String url) {
87                 this.url = url;
88         }
89
90         public String getUserName() {
91                 return userName;
92         }
93
94         public void setUserName(String userName) {
95                 this.userName = userName;
96         }
97
98         public String getPassword() {
99                 return password;
100         }
101
102         public void setPassword(String password) {
103                 this.password = password;
104         }
105
106         public String getVimId() {
107                 return vimId;
108         }
109
110         public void setVimId(String vimId) {
111                 this.vimId = vimId;
112         }
113
114         public String getVendor() {
115                 return vendor;
116         }
117
118         public void setVendor(String vendor) {
119                 this.vendor = vendor;
120         }
121
122         public String getVersion() {
123                 return version;
124         }
125
126         public void setVersion(String version) {
127                 this.version = version;
128         }
129
130         public String getDescription() {
131                 return description;
132         }
133
134         public void setDescription(String description) {
135                 this.description = description;
136         }
137
138         public String getCertificateUrl() {
139                 return certificateUrl;
140         }
141
142         public void setCertificateUrl(String certificateUrl) {
143                 this.certificateUrl = certificateUrl;
144         }
145
146         public String getCreateTime() {
147                 return createTime;
148         }
149
150         public void setCreateTime(String createTime) {
151                 this.createTime = createTime;
152         }
153 }