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