Merge "update install and configure document"
[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         
31         public Resource(WorkflowType resourceType, String resourceId, boolean generated){
32                 this.resourceId = resourceId;
33                 this.resourceType = resourceType;
34                 this.generated = generated;
35         }
36         
37         public String getResourceId() {
38                 return resourceId;
39         }
40         public void setResourceId(String resourceId) {
41                 this.resourceId = resourceId;
42         }
43         public WorkflowType getResourceType() {
44                 return resourceType;
45         }
46         public void setResourceType(WorkflowType resourceType) {
47                 this.resourceType = resourceType;
48         }
49         public boolean isGenerated() {
50                 return generated;
51         }
52         public void setGenerated(boolean generated) {
53                 this.generated = generated;
54         }
55         public boolean isBaseVfModule() {
56                 return baseVfModule;
57         }
58         public void setBaseVfModule(boolean baseVfModule) {
59                 this.baseVfModule = baseVfModule;
60         }
61         public String getVirtualLinkKey() {
62                 return virtualLinkKey;
63         }
64         public void setVirtualLinkKey(String virtualLinkKey) {
65                 this.virtualLinkKey = virtualLinkKey;
66         }
67 }