be73b37f85eaf9580aba0de45fdfad020bd4f81a
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / entities / ExecuteBuildingBlock.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.servicedecomposition.entities;
22
23 import java.io.Serializable;
24
25 import org.onap.so.serviceinstancebeans.RequestDetails;
26
27 public class ExecuteBuildingBlock implements Serializable{
28         /**
29          * 
30          */
31         private static final long serialVersionUID = 1L;
32         private BuildingBlock buildingBlock;
33         private String requestId;
34         private String apiVersion;
35         private String resourceId;
36         private String requestAction;
37         private String vnfType;
38         private Boolean aLaCarte;
39         private Boolean homing;
40         private WorkflowResourceIds workflowResourceIds;
41         private RequestDetails requestDetails;
42         private ConfigurationResourceKeys configurationResourceKeys;
43         
44         public BuildingBlock getBuildingBlock() {
45                 return buildingBlock;
46         }
47         public void setBuildingBlock(BuildingBlock buildingBlock) {
48                 this.buildingBlock = buildingBlock;
49         }
50         public String getRequestId() {
51                 return requestId;
52         }
53         public void setRequestId(String requestId) {
54                 this.requestId = requestId;
55         }
56         public String getApiVersion() {
57                 return apiVersion;
58         }
59         public void setApiVersion(String apiVersion) {
60                 this.apiVersion = apiVersion;
61         }
62         public String getResourceId() {
63                 return resourceId;
64         }
65         public void setResourceId(String resourceId) {
66                 this.resourceId = resourceId;
67         }
68         public String getRequestAction() {
69                 return requestAction;
70         }
71         public void setRequestAction(String requestAction) {
72                 this.requestAction = requestAction;
73         }
74         public Boolean isaLaCarte() {
75                 return aLaCarte;
76         }
77         public void setaLaCarte(Boolean aLaCarte) {
78                 this.aLaCarte = aLaCarte;
79         }
80         public String getVnfType() {
81                 return vnfType;
82         }
83         public void setVnfType(String vnfType) {
84                 this.vnfType = vnfType;
85         }
86         public Boolean isHoming() {
87                 return homing;
88         }
89         public void setHoming(Boolean homing) {
90                 this.homing = homing;
91         }
92         public WorkflowResourceIds getWorkflowResourceIds() {
93                 return workflowResourceIds;
94         }
95         public void setWorkflowResourceIds(WorkflowResourceIds workflowResourceIds) {
96                 this.workflowResourceIds = workflowResourceIds;
97         }
98         public RequestDetails getRequestDetails() {
99                 return requestDetails;
100         }
101         public void setRequestDetails(RequestDetails requestDetails) {
102                 this.requestDetails = requestDetails;
103         }
104         public ConfigurationResourceKeys getConfigurationResourceKeys() {
105                 return configurationResourceKeys;
106         }
107         public void setConfigurationResourceKeys(ConfigurationResourceKeys configurationResourceKeys) {
108                 this.configurationResourceKeys = configurationResourceKeys;
109         }
110 }