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