Add modify vnf feature on driver
[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 Link cancel;
24         @JsonProperty("operationParams")
25         private Link operationParams;
26         @JsonProperty("endNotification")
27         private Link endNotification;
28         @JsonProperty("self")
29         private Link self;
30         @JsonProperty("additionalData")
31         private Link additionalData;
32         @JsonProperty("list")
33         private Link list;
34         @JsonProperty("vnf") 
35         private Link vnf;
36         public Link getCancel() {
37                 return cancel;
38         }
39         public void setCancel(Link cancel) {
40                 this.cancel = cancel;
41         }
42         public Link getOperationParams() {
43                 return operationParams;
44         }
45         public void setOperationParams(Link operationParams) {
46                 this.operationParams = operationParams;
47         }
48         public Link getEndNotification() {
49                 return endNotification;
50         }
51         public void setEndNotification(Link endNotification) {
52                 this.endNotification = endNotification;
53         }
54         public Link getSelf() {
55                 return self;
56         }
57         public void setSelf(Link self) {
58                 this.self = self;
59         }
60         public Link getAdditionalData() {
61                 return additionalData;
62         }
63         public void setAdditionalData(Link additionalData) {
64                 this.additionalData = additionalData;
65         }
66         public Link getList() {
67                 return list;
68         }
69         public void setList(Link list) {
70                 this.list = list;
71         }
72         public Link getVnf() {
73                 return vnf;
74         }
75         public void setVnf(Link vnf) {
76                 this.vnf = vnf;
77         }
78         
79         
80         
81         
82         
83         
84
85 }