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 / CBAMVnfNotificationRequest.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
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo;
18
19 import org.onap.vfc.nfvo.driver.vnfm.svnfm.cbam.bo.entity.VnfNotificationType;
20
21 import com.fasterxml.jackson.annotation.JsonProperty;
22
23 public class CBAMVnfNotificationRequest {
24         @JsonProperty("notificationType")
25         private VnfNotificationType notificationType;
26         
27         @JsonProperty("subscriptionId")
28         private String subscriptionId;
29         
30         @JsonProperty("timestamp")
31         private String timestamp;
32         
33         @JsonProperty("vnfInstanceId")
34         private String vnfInstanceId;
35
36         public VnfNotificationType getNotificationType() {
37                 return notificationType;
38         }
39
40         public void setNotificationType(VnfNotificationType notificationType) {
41                 this.notificationType = notificationType;
42         }
43
44         public String getSubscriptionId() {
45                 return subscriptionId;
46         }
47
48         public void setSubscriptionId(String subscriptionId) {
49                 this.subscriptionId = subscriptionId;
50         }
51
52         public String getTimestamp() {
53                 return timestamp;
54         }
55
56         public void setTimestamp(String timestamp) {
57                 this.timestamp = timestamp;
58         }
59
60         public String getVnfInstanceId() {
61                 return vnfInstanceId;
62         }
63
64         public void setVnfInstanceId(String vnfInstanceId) {
65                 this.vnfInstanceId = vnfInstanceId;
66         }
67
68         
69
70    
71 }