Containerization feature of SO
[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         
30         public Resource(WorkflowType resourceType, String resourceId, boolean generated){
31                 this.resourceId = resourceId;
32                 this.resourceType = resourceType;
33                 this.generated = generated;
34         }
35         
36         public String getResourceId() {
37                 return resourceId;
38         }
39         public void setResourceId(String resourceId) {
40                 this.resourceId = resourceId;
41         }
42         public WorkflowType getResourceType() {
43                 return resourceType;
44         }
45         public void setResourceType(WorkflowType resourceType) {
46                 this.resourceType = resourceType;
47         }
48         public boolean isGenerated() {
49                 return generated;
50         }
51         public void setGenerated(boolean generated) {
52                 this.generated = generated;
53         }
54         public boolean isBaseVfModule() {
55                 return baseVfModule;
56         }
57         public void setBaseVfModule(boolean baseVfModule) {
58                 this.baseVfModule = baseVfModule;
59         }
60 }