3c8277ef2bde2a5cf509d5eb1315ff63351a731e
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / cbam / bo / entity / _links.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.entity;
18
19 import com.fasterxml.jackson.annotation.JsonProperty;
20
21 public class _links {
22         @JsonProperty("cancel")
23         private String cancel;
24         @JsonProperty("operationParams")
25         private String operationParams;
26         @JsonProperty("endNotification")
27         private String endNotification;
28         @JsonProperty("self")
29         private String self;
30         @JsonProperty("additionalData")
31         private String additionalData;
32         @JsonProperty("list")
33         private String list;
34         @JsonProperty("vnf") 
35         private String vnf;
36         public String getCancel() {
37                 return cancel;
38         }
39         public void setCancel(String cancel) {
40                 this.cancel = cancel;
41         }
42         public String getOperationParams() {
43                 return operationParams;
44         }
45         public void setOperationParams(String operationParams) {
46                 this.operationParams = operationParams;
47         }
48         public String getEndNotification() {
49                 return endNotification;
50         }
51         public void setEndNotification(String endNotification) {
52                 this.endNotification = endNotification;
53         }
54         public String getSelf() {
55                 return self;
56         }
57         public void setSelf(String self) {
58                 this.self = self;
59         }
60         public String getAdditionalData() {
61                 return additionalData;
62         }
63         public void setAdditionalData(String additionalData) {
64                 this.additionalData = additionalData;
65         }
66         public String getList() {
67                 return list;
68         }
69         public void setList(String list) {
70                 this.list = list;
71         }
72         public String getVnf() {
73                 return vnf;
74         }
75         public void setVnf(String vnf) {
76                 this.vnf = vnf;
77         }
78         
79         
80         
81         
82         
83
84 }