Replaced all tabs with spaces in java and pom.xml
[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
44     public void setResourceId(String resourceId) {
45         this.resourceId = resourceId;
46     }
47
48     public WorkflowType getResourceType() {
49         return resourceType;
50     }
51
52     public void setResourceType(WorkflowType resourceType) {
53         this.resourceType = resourceType;
54     }
55
56     public boolean isGenerated() {
57         return generated;
58     }
59
60     public void setGenerated(boolean generated) {
61         this.generated = generated;
62     }
63
64     public boolean isBaseVfModule() {
65         return baseVfModule;
66     }
67
68     public void setBaseVfModule(boolean baseVfModule) {
69         this.baseVfModule = baseVfModule;
70     }
71
72     public String getVirtualLinkKey() {
73         return virtualLinkKey;
74     }
75
76     public void setVirtualLinkKey(String virtualLinkKey) {
77         this.virtualLinkKey = virtualLinkKey;
78     }
79
80     public String getVnfCustomizationId() {
81         return vnfCustomizationId;
82     }
83
84     public void setVnfCustomizationId(String vnfCustomizationId) {
85         this.vnfCustomizationId = vnfCustomizationId;
86     }
87
88     public String getVfModuleCustomizationId() {
89         return vfModuleCustomizationId;
90     }
91
92     public void setVfModuleCustomizationId(String vfModuleCustomizationId) {
93         this.vfModuleCustomizationId = vfModuleCustomizationId;
94     }
95
96     public String getCvnfModuleCustomizationId() {
97         return cvnfModuleCustomizationId;
98     }
99
100     public void setCvnfModuleCustomizationId(String cvnfModuleCustomizationId) {
101         this.cvnfModuleCustomizationId = cvnfModuleCustomizationId;
102     }
103 }