Merge "Reorder modifiers"
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / builder / ServiceRpcInputEntityBuilder.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.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.builder;
22
23 import org.camunda.bpm.engine.delegate.DelegateExecution;
24 import org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity.*;
25
26 import java.util.List;
27 import java.util.Map;
28
29 public class ServiceRpcInputEntityBuilder extends AbstractBuilder<Map<String, String>, RpcServiceTopologyOperationInputEntity> {
30     @Override
31     public RpcServiceTopologyOperationInputEntity build(DelegateExecution execution, Map<String, String> inputs) throws Exception {
32         RpcServiceTopologyOperationInputEntity rpcServiceTopologyOperationInputEntity = new RpcServiceTopologyOperationInputEntity();
33         ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity = new ServiceTopologyOperationInputEntity();
34         {
35             loadSdncRequestHeaderEntity(serviceTopologyOperationInputEntity, execution);
36             loadRequestInformationEntity(serviceTopologyOperationInputEntity, execution);
37             loadServiceInformation(serviceTopologyOperationInputEntity, execution);
38             loadServiceRequestInputEntity(serviceTopologyOperationInputEntity, execution);
39         }
40         rpcServiceTopologyOperationInputEntity.setServiceTopologyOperationInputEntity(serviceTopologyOperationInputEntity);
41         return rpcServiceTopologyOperationInputEntity;
42     }
43
44     private void loadServiceRequestInputEntity(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
45         ServiceRequestInputEntity serviceRequestInputEntity = getServiceRequestInputEntity(execution);
46         serviceTopologyOperationInputEntity.setServiceRequestInput(serviceRequestInputEntity);
47     }
48
49     private ServiceRequestInputEntity getServiceRequestInputEntity(DelegateExecution execution) {
50         ServiceRequestInputEntity serviceRequestInputEntity = new ServiceRequestInputEntity();
51         serviceRequestInputEntity.setServiceInstanceName(getServiceInstanceName(execution));
52         return serviceRequestInputEntity;
53     }
54
55     private ServiceInputParametersEntity getServiceInputParametersEntity(Map<String, String> inputs) {
56         List<ParamEntity> paramEntityList = getParamEntities(inputs);
57         ServiceInputParametersEntity serviceInputParametersEntity = new ServiceInputParametersEntity();
58         serviceInputParametersEntity.setParamList(paramEntityList);
59         return serviceInputParametersEntity;
60     }
61
62     private void loadServiceInformation(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
63         ServiceInformationEntity serviceInformationEntity = getServiceInformationEntity(execution);
64         serviceTopologyOperationInputEntity.setServiceInformation(serviceInformationEntity);
65     }
66
67     private void loadRequestInformationEntity(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
68         RequestInformationEntity requestInformationEntity = getRequestInformationEntity(execution);
69         serviceTopologyOperationInputEntity.setRequestInformation(requestInformationEntity);
70     }
71
72     private void loadSdncRequestHeaderEntity(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
73         SdncRequestHeaderEntity sdncRequestHeaderEntity = new SdncRequestHeaderEntity();
74         {
75             sdncRequestHeaderEntity.setSvcRequestId(getRequestId(execution));
76             sdncRequestHeaderEntity.setSvcAction(getSvcAction(execution));
77         }
78         serviceTopologyOperationInputEntity.setSdncRequestHeader(sdncRequestHeaderEntity);
79     }
80 }