Improve unit-test coverage
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / entity / SubscriptionFilter.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.cbam.bo.entity;
17
18 import java.util.List;
19
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity.OperationExecution.OperationType;
21
22 import com.fasterxml.jackson.annotation.JsonProperty;
23
24 public class SubscriptionFilter {
25     
26         @JsonProperty("vnfdId")
27         private String vnfdId;
28         
29         @JsonProperty("vnfProductName")
30         private String vnfProductName;
31         
32         @JsonProperty("vnfSoftwareVersion")
33         private String vnfSoftwareVersion;
34         
35         @JsonProperty("vnfInstanceId")
36         private String vnfInstanceId;
37         
38         @JsonProperty("notificationTypes")
39         private List<VnfNotificationType> notificationTypes;
40         
41         @JsonProperty("operationType")
42         private List<OperationType> operationType;
43
44         public String getVnfdId() {
45                 return vnfdId;
46         }
47
48         public void setVnfdId(String vnfdId) {
49                 this.vnfdId = vnfdId;
50         }
51
52         public String getVnfProductName() {
53                 return vnfProductName;
54         }
55
56         public void setVnfProductName(String vnfProductName) {
57                 this.vnfProductName = vnfProductName;
58         }
59
60         public String getVnfSoftwareVersion() {
61                 return vnfSoftwareVersion;
62         }
63
64         public void setVnfSoftwareVersion(String vnfSoftwareVersion) {
65                 this.vnfSoftwareVersion = vnfSoftwareVersion;
66         }
67
68         public String getVnfInstanceId() {
69                 return vnfInstanceId;
70         }
71
72         public void setVnfInstanceId(String vnfInstanceId) {
73                 this.vnfInstanceId = vnfInstanceId;
74         }
75
76         public List<VnfNotificationType> getNotificationTypes() {
77                 return notificationTypes;
78         }
79
80         public void setNotificationTypes(List<VnfNotificationType> notificationTypes) {
81                 this.notificationTypes = notificationTypes;
82         }
83
84         public List<OperationType> getOperationType() {
85                 return operationType;
86         }
87
88         public void setOperationType(List<OperationType> operationType) {
89                 this.operationType = operationType;
90         }
91         
92         
93         
94         
95         
96         
97 }