Merge "Replaced with Diamond symbol"
[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 /**
30  * Created by 10112215 on 2017/9/26.
31  */
32 public class ServiceRpcInputEntityBuilder extends AbstractBuilder<Map<String, String>, RpcServiceTopologyOperationInputEntity> {
33     @Override
34     public RpcServiceTopologyOperationInputEntity build(DelegateExecution execution, Map<String, String> inputs) throws Exception {
35         RpcServiceTopologyOperationInputEntity rpcServiceTopologyOperationInputEntity = new RpcServiceTopologyOperationInputEntity();
36         ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity = new ServiceTopologyOperationInputEntity();
37         {
38             loadSdncRequestHeaderEntity(serviceTopologyOperationInputEntity, execution);
39             loadRequestInformationEntity(serviceTopologyOperationInputEntity, execution);
40             loadServiceInformation(serviceTopologyOperationInputEntity, execution);
41             loadServiceRequestInputEntity(serviceTopologyOperationInputEntity, execution);
42         }
43         rpcServiceTopologyOperationInputEntity.setServiceTopologyOperationInputEntity(serviceTopologyOperationInputEntity);
44         return rpcServiceTopologyOperationInputEntity;
45     }
46
47     private void loadServiceRequestInputEntity(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
48         ServiceRequestInputEntity serviceRequestInputEntity = getServiceRequestInputEntity(execution);
49         serviceTopologyOperationInputEntity.setServiceRequestInput(serviceRequestInputEntity);
50     }
51
52     private ServiceRequestInputEntity getServiceRequestInputEntity(DelegateExecution execution) {
53         ServiceRequestInputEntity serviceRequestInputEntity = new ServiceRequestInputEntity();
54         serviceRequestInputEntity.setServiceInstanceName(getServiceInstanceName(execution));
55         return serviceRequestInputEntity;
56     }
57
58     private ServiceInputParametersEntity getServiceInputParametersEntity(Map<String, String> inputs) {
59         List<ParamEntity> paramEntityList = getParamEntities(inputs);
60         ServiceInputParametersEntity serviceInputParametersEntity = new ServiceInputParametersEntity();
61         serviceInputParametersEntity.setParamList(paramEntityList);
62         return serviceInputParametersEntity;
63     }
64
65     private void loadServiceInformation(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
66         ServiceInformationEntity serviceInformationEntity = getServiceInformationEntity(execution);
67         serviceTopologyOperationInputEntity.setServiceInformation(serviceInformationEntity);
68     }
69
70     private void loadRequestInformationEntity(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
71         RequestInformationEntity requestInformationEntity = getRequestInformationEntity(execution);
72         serviceTopologyOperationInputEntity.setRequestInformation(requestInformationEntity);
73     }
74
75     private void loadSdncRequestHeaderEntity(ServiceTopologyOperationInputEntity serviceTopologyOperationInputEntity, DelegateExecution execution) {
76         SdncRequestHeaderEntity sdncRequestHeaderEntity = new SdncRequestHeaderEntity();
77         {
78             sdncRequestHeaderEntity.setSvcRequestId(getRequestId(execution));
79             sdncRequestHeaderEntity.setSvcAction(getOperationType(execution));
80         }
81         serviceTopologyOperationInputEntity.setSdncRequestHeader(sdncRequestHeaderEntity);
82     }
83 }