Merge "Remove unused import"
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / workflow / tasks / Resource.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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.infrastructure.workflow.tasks;
22
23 public class Resource {
24
25         private String resourceId;
26         private WorkflowType resourceType;
27         private boolean generated;
28         private boolean baseVfModule;
29         private String virtualLinkKey;
30         private String vnfCustomizationId;
31         private String vfModuleCustomizationId;
32         private String cvnfModuleCustomizationId;
33         
34         public Resource(WorkflowType resourceType, String resourceId, boolean generated){
35                 this.resourceId = resourceId;
36                 this.resourceType = resourceType;
37                 this.generated = generated;
38         }
39         
40         public String getResourceId() {
41                 return resourceId;
42         }
43         public void setResourceId(String resourceId) {
44                 this.resourceId = resourceId;
45         }
46         public WorkflowType getResourceType() {
47                 return resourceType;
48         }
49         public void setResourceType(WorkflowType resourceType) {
50                 this.resourceType = resourceType;
51         }
52         public boolean isGenerated() {
53                 return generated;
54         }
55         public void setGenerated(boolean generated) {
56                 this.generated = generated;
57         }
58         public boolean isBaseVfModule() {
59                 return baseVfModule;
60         }
61         public void setBaseVfModule(boolean baseVfModule) {
62                 this.baseVfModule = baseVfModule;
63         }
64         public String getVirtualLinkKey() {
65                 return virtualLinkKey;
66         }
67         public void setVirtualLinkKey(String virtualLinkKey) {
68                 this.virtualLinkKey = virtualLinkKey;
69         }
70         public String getVnfCustomizationId() {
71                 return vnfCustomizationId;
72         }
73         public void setVnfCustomizationId(String vnfCustomizationId) {
74                 this.vnfCustomizationId = vnfCustomizationId;
75         }
76         public String getVfModuleCustomizationId() {
77                 return vfModuleCustomizationId;
78         }
79         public void setVfModuleCustomizationId(String vfModuleCustomizationId) {
80                 this.vfModuleCustomizationId = vfModuleCustomizationId;
81         }
82         public String getCvnfModuleCustomizationId() {
83                 return cvnfModuleCustomizationId;
84         }
85         public void setCvnfModuleCustomizationId(String cvnfModuleCustomizationId) {
86                 this.cvnfModuleCustomizationId = cvnfModuleCustomizationId;
87         }
88 }