Add modify vnf feature on driver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / CBAMModifyVnfRequest.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.cbam.bo;
18
19 import java.util.ArrayList;
20
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity.VnfProperty;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 public class CBAMModifyVnfRequest {
26         @JsonProperty("name")
27         private String name;
28         
29         @JsonProperty("description")
30         private String description;
31         
32         @JsonProperty("metadata")
33         private String metadata;
34         
35         @JsonProperty("extensions")
36         private ArrayList<VnfProperty> extensions;
37
38         public String getName() {
39                 return name;
40         }
41
42         public void setName(String name) {
43                 this.name = name;
44         }
45
46         public String getDescription() {
47                 return description;
48         }
49
50         public void setDescription(String description) {
51                 this.description = description;
52         }
53
54         public String getMetadata() {
55                 return metadata;
56         }
57
58         public void setMetadata(String metadata) {
59                 this.metadata = metadata;
60         }
61
62         public ArrayList<VnfProperty> getExtensions() {
63                 return extensions;
64         }
65
66         public void setExtensions(ArrayList<VnfProperty> extensions) {
67                 this.extensions = extensions;
68         }
69         
70 }