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