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