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