bdfdf8482c782f4d0bc2c08bed3b2bf935d2a530
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nslcm / bo / NslcmNotifyLCMEventsRequest.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 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo;
17
18 import org.onap.vfc.nfvo.driver.vnfm.svnfm.constant.CommonEnum;
19 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.entity.AffectedVirtualLink;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.entity.AffectedVirtualStorage;
21 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.entity.AffectedVnfc;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 public class NslcmNotifyLCMEventsRequest {
26         
27         @JsonProperty("status")
28         private CommonEnum.status status;
29         
30         @JsonProperty("vnfInstanceId")
31         private String vnfInstanceId;
32         @JsonProperty("operation")
33         private String operation;
34         @JsonProperty("jobId")
35         private String jobId;
36         @JsonProperty("affectedVnfc")
37         private AffectedVnfc affectedVnfc;
38         @JsonProperty("affectedVl")
39         private AffectedVirtualLink affectedVl;
40         @JsonProperty("affectedVirtualStorage")
41         private AffectedVirtualStorage affectedVirtualStorage;
42         public CommonEnum.status getStatus() {
43                 return status;
44         }
45         public void setStatus(CommonEnum.status status) {
46                 this.status = status;
47         }
48         public String getVnfInstanceId() {
49                 return vnfInstanceId;
50         }
51         public void setVnfInstanceId(String vnfInstanceId) {
52                 this.vnfInstanceId = vnfInstanceId;
53         }
54         public String getOperation() {
55                 return operation;
56         }
57         public void setOperation(String operation) {
58                 this.operation = operation;
59         }
60         public String getJobId() {
61                 return jobId;
62         }
63         public void setJobId(String jobId) {
64                 this.jobId = jobId;
65         }
66         public AffectedVnfc getAffectedVnfc() {
67                 return affectedVnfc;
68         }
69         public void setAffectedVnfc(AffectedVnfc affectedVnfc) {
70                 this.affectedVnfc = affectedVnfc;
71         }
72         public AffectedVirtualLink getAffectedVl() {
73                 return affectedVl;
74         }
75         public void setAffectedVl(AffectedVirtualLink affectedVl) {
76                 this.affectedVl = affectedVl;
77         }
78         public AffectedVirtualStorage getAffectedVirtualStorage() {
79                 return affectedVirtualStorage;
80         }
81         public void setAffectedVirtualStorage(AffectedVirtualStorage affectedVirtualStorage) {
82                 this.affectedVirtualStorage = affectedVirtualStorage;
83         }
84         
85         
86         
87         
88         
89 }