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 / vnfmdriver / bo / ScaleVnfRequest.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.vnfmdriver.bo;
18
19
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.constant.ScaleType;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.vnfmdriver.bo.entity.AdditionalParam;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 public class ScaleVnfRequest {
26         @JsonProperty("vnfInstanceId")
27         private String vnfInstanceId;
28         
29         @JsonProperty("type")
30         private ScaleType type;
31         
32         @JsonProperty("aspectId")
33         private String aspectId;
34         
35         @JsonProperty("numberOfSteps")
36         private Integer numberOfSteps;
37         
38         @JsonProperty("additionalParam")
39         private AdditionalParam additionalParam;
40         
41         
42         public String getAspectId() {
43                 return aspectId;
44         }
45
46         public void setAspectId(String aspectId) {
47                 this.aspectId = aspectId;
48         }
49
50         public Integer getNumberOfSteps() {
51                 return numberOfSteps;
52         }
53
54         public void setNumberOfSteps(Integer numberOfSteps) {
55                 this.numberOfSteps = numberOfSteps;
56         }
57
58         public AdditionalParam getAdditionalParam() {
59                 return additionalParam;
60         }
61
62         public void setAdditionalParam(AdditionalParam additionalParam) {
63                 this.additionalParam = additionalParam;
64         }
65
66         public String getVnfInstanceId() {
67                 return vnfInstanceId;
68         }
69
70         public void setVnfInstanceId(String vnfInstanceId) {
71                 this.vnfInstanceId = vnfInstanceId;
72         }
73
74         public ScaleType getType() {
75                 return type;
76         }
77
78         public void setType(ScaleType type) {
79                 this.type = type;
80         }
81
82         
83
84         
85
86
87         
88         
89         
90         
91 }