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