83043b3ec561b633ca4b69757319dd624c95d29f
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / onap / so / bpmn / core / domain / Vnf.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.core.domain;
22
23 import java.io.Serializable;
24
25 import com.fasterxml.jackson.annotation.JsonRootName;
26
27 /**
28  * This class is used to store instance
29  * data of Vnf for ServiceDecomposition
30  *
31  * @author bb3476
32  *
33  */
34 @JsonRootName("vnf")
35 public class Vnf extends JsonWrapper implements Serializable {
36
37         private static final long serialVersionUID = 1L;
38         private String vnfId;
39         private String vnfName;
40         private String serviceId;
41         private String vnfType;
42         private String orchStatus;
43         private String modelInvariantId;
44         private String modelVersionId;
45         private String modelCustomizationId;
46         private String nfType;
47         private String nfRole;
48         private String nfFunction;
49         private String nfNamingCode;
50         private String tenantId;
51         private String cloudSiteId;
52         
53
54         public String getVnfName() {
55                 return vnfName;
56         }
57         public void setVnfName(String vnfName) {
58                 this.vnfName = vnfName;
59         }
60         public String getServiceId() {
61                 return serviceId;
62         }
63         public void setServiceId(String serviceId) {
64                 this.serviceId = serviceId;
65         }
66         public String getVnfType() {
67                 return vnfType;
68         }
69         public void setVnfType(String vnfType) {
70                 this.vnfType = vnfType;
71         }
72         public String getOrchStatus() {
73                 return orchStatus;
74         }
75         public void setOrchStatus(String orchStatus) {
76                 this.orchStatus = orchStatus;
77         }
78         public String getModelInvariantId() {
79                 return modelInvariantId;
80         }
81         public void setModelInvariantId(String modelInvariantId) {
82                 this.modelInvariantId = modelInvariantId;
83         }
84         public String getModelVersionId() {
85                 return modelVersionId;
86         }
87         public void setModelVersionId(String modelVersionId) {
88                 this.modelVersionId = modelVersionId;
89         }
90         public String getModelCustomizationId() {
91                 return modelCustomizationId;
92         }
93         public void setModelCustomizationId(String modelCustomizationId) {
94                 this.modelCustomizationId = modelCustomizationId;
95         }
96         public String getNfType() {
97                 return nfType;
98         }
99         public void setNfType(String nfType) {
100                 this.nfType = nfType;
101         }
102         public String getNfRole() {
103                 return nfRole;
104         }
105         public void setNfRole(String nfRole) {
106                 this.nfRole = nfRole;
107         }
108         public String getNfFunction() {
109                 return nfFunction;
110         }
111         public void setNfFunction(String nfFunction) {
112                 this.nfFunction = nfFunction;
113         }
114         public String getNfNamingCode() {
115                 return nfNamingCode;
116         }
117         public void setNfNamingCode(String nfNamingCode) {
118                 this.nfNamingCode = nfNamingCode;
119         }
120         public String getVnfId() {
121                 return vnfId;
122         }
123         public void setVnfId(String vnfId) {
124                 this.vnfId = vnfId;
125         }
126         public String getTenantId() {
127                 return tenantId;
128         }
129         public void setTenantId(String tenantId) {
130                 this.tenantId = tenantId;
131         }
132         public String getCloudSiteId() {
133                 return cloudSiteId;
134         }
135         public void setCloudSiteId(String cloudSiteId) {
136                 this.cloudSiteId = cloudSiteId;
137         }
138         
139 }