543f805d7903f69f5acbc79d67153196caca65a0
[vfc/nfvo/driver/vnfm/svnfm.git] /
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.vnfmdriver.bo.entity;
17
18 import com.fasterxml.jackson.annotation.JsonProperty;
19 import com.nokia.vfcadaptor.constant.CommonEnum;
20
21 public class VnfInfo {
22         @JsonProperty("vnfInstanceId")
23         private String vnfInstanceId;
24         
25         @JsonProperty("vnfInstanceName")
26         private String vnfInstanceName;
27         
28         @JsonProperty("vnfInstanceDescription")
29         private String vnfInstanceDescription;
30         
31         @JsonProperty("vnfdId")
32         private String vnfdId;
33         
34         @JsonProperty("vnfPackageId")
35         private String vnfPackageId;
36         
37         @JsonProperty("version")
38         private String version;
39         
40         @JsonProperty("vnfProvider")
41         private String vnfProvider;
42         
43         @JsonProperty("vnfType")
44         private String vnfType;
45         
46         @JsonProperty("vnfStatus")
47         private CommonEnum.InstantiationState vnfStatus;
48
49         public String getVnfInstanceId() {
50                 return vnfInstanceId;
51         }
52
53         public void setVnfInstanceId(String vnfInstanceId) {
54                 this.vnfInstanceId = vnfInstanceId;
55         }
56
57         public String getVnfInstanceName() {
58                 return vnfInstanceName;
59         }
60
61         public void setVnfInstanceName(String vnfInstanceName) {
62                 this.vnfInstanceName = vnfInstanceName;
63         }
64
65         public String getVnfInstanceDescription() {
66                 return vnfInstanceDescription;
67         }
68
69         public void setVnfInstanceDescription(String vnfInstanceDescription) {
70                 this.vnfInstanceDescription = vnfInstanceDescription;
71         }
72
73         public String getVnfdId() {
74                 return vnfdId;
75         }
76
77         public void setVnfdId(String vnfdId) {
78                 this.vnfdId = vnfdId;
79         }
80
81         public String getVnfPackageId() {
82                 return vnfPackageId;
83         }
84
85         public void setVnfPackageId(String vnfPackageId) {
86                 this.vnfPackageId = vnfPackageId;
87         }
88
89         public String getVersion() {
90                 return version;
91         }
92
93         public void setVersion(String version) {
94                 this.version = version;
95         }
96
97         public String getVnfProvider() {
98                 return vnfProvider;
99         }
100
101         public void setVnfProvider(String vnfProvider) {
102                 this.vnfProvider = vnfProvider;
103         }
104
105         public String getVnfType() {
106                 return vnfType;
107         }
108
109         public void setVnfType(String vnfType) {
110                 this.vnfType = vnfType;
111         }
112
113         public CommonEnum.InstantiationState getVnfStatus() {
114                 return vnfStatus;
115         }
116
117         public void setVnfStatus(CommonEnum.InstantiationState vnfStatus) {
118                 this.vnfStatus = vnfStatus;
119         }
120
121         
122         
123         
124
125 }