update get job status part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / CBAMTerminateVnfRequest.java
1
2 /*
3  * Copyright 2016-2017, Nokia Corporation
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo;
19
20 import com.fasterxml.jackson.annotation.JsonProperty;
21
22 public class CBAMTerminateVnfRequest {
23         
24         @JsonProperty("name")
25         private String name;
26         
27         @JsonProperty("description")
28         private String description;
29
30         @JsonProperty("terminationType")
31         private String terminationType;
32         
33         @JsonProperty("gracefulTerminationTimeout")
34         private Integer gracefulTerminationTimeout;
35         
36         @JsonProperty("additionalParams")
37         private Object additionalParams;
38     
39         
40
41
42         public String getName() {
43                 return name;
44         }
45
46         public void setName(String name) {
47                 this.name = name;
48         }
49
50         public String getDescription() {
51                 return description;
52         }
53
54         public void setDescription(String description) {
55                 this.description = description;
56         }
57
58         
59
60         public Integer getGracefulTerminationTimeout() {
61                 return gracefulTerminationTimeout;
62         }
63
64         public void setGracefulTerminationTimeout(Integer gracefulTerminationTimeout) {
65                 this.gracefulTerminationTimeout = gracefulTerminationTimeout;
66         }
67
68         public Object getAdditionalParams() {
69                 return additionalParams;
70         }
71
72         public void setAdditionalParams(Object additionalParams) {
73                 this.additionalParams = additionalParams;
74         }
75    
76         public String getTerminationType() {
77                 return terminationType;
78         }
79
80         public void setTerminationType(String terminationType) {
81                 this.terminationType = terminationType;
82         }
83
84         
85
86 }