Merge changes Ibc78f5be,Id1a6e6d2
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / builder / NetworkRpcInputEntityBuilder.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/20.
31  */
32 public class NetworkRpcInputEntityBuilder extends AbstractBuilder<Map<String, String>, RpcNetworkTopologyOperationInputEntity> {
33
34     @Override
35     public RpcNetworkTopologyOperationInputEntity build(DelegateExecution execution, Map<String, String> inputs) {
36         RpcNetworkTopologyOperationInputEntity rpcNetworkTopologyOperationInputEntity = new RpcNetworkTopologyOperationInputEntity();
37         NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity = getNetworkTopologyOperationInputEntity(execution, inputs);
38         rpcNetworkTopologyOperationInputEntity.setInput(networkTopologyOperationInputEntity);
39         return rpcNetworkTopologyOperationInputEntity;
40     }
41
42     private void loadNetwrokRequestInputEntity(Map<String, String> inputs, NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity) {
43         NetworkRequestInputEntity networkRequestInputEntity = new NetworkRequestInputEntity();
44         {
45             NetworkInputPaarametersEntity networkInputPaarametersEntity = new NetworkInputPaarametersEntity();
46             {
47                 List<ParamEntity> paramEntityList = getParamEntities(inputs);
48                 networkInputPaarametersEntity.setParamList(paramEntityList);
49             }
50         }
51         networkTopologyOperationInputEntity.setNetworkRequestInput(networkRequestInputEntity);
52     }
53
54     private void loadRequestInformationEntity(NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity, DelegateExecution execution) {
55         RequestInformationEntity requestInformationEntity = getRequestInformationEntity(execution);
56         networkTopologyOperationInputEntity.setRequestInformation(requestInformationEntity);
57     }
58
59     private void loadSdncRequestHeaderEntity(NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity, DelegateExecution execution) {
60         SdncRequestHeaderEntity sdncRequestHeaderEntity = new SdncRequestHeaderEntity();
61         {
62             sdncRequestHeaderEntity.setSvcRequestId(getRequestId(execution));
63             sdncRequestHeaderEntity.setSvcAction(getOperationType(execution));
64         }
65         networkTopologyOperationInputEntity.setSdncRequestHeader(sdncRequestHeaderEntity);
66     }
67
68     private void loadServiceInformation(NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity, DelegateExecution execution) {
69         ServiceInformationEntity serviceInformationEntity = getServiceInformationEntity(execution);
70         networkTopologyOperationInputEntity.setServiceInformation(serviceInformationEntity);
71     }
72
73     private NetworkTopologyOperationInputEntity getNetworkTopologyOperationInputEntity(DelegateExecution execution, Map<String, String> inputs) {
74         NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity = new NetworkTopologyOperationInputEntity();
75         {
76             loadSdncRequestHeaderEntity(networkTopologyOperationInputEntity, execution);
77             loadRequestInformationEntity(networkTopologyOperationInputEntity, execution);
78             loadServiceInformation(networkTopologyOperationInputEntity, execution);
79             loadNetworkInformationEntity(execution, networkTopologyOperationInputEntity);
80             loadNetwrokRequestInputEntity(inputs, networkTopologyOperationInputEntity);
81         }
82         return networkTopologyOperationInputEntity;
83     }
84
85     private void loadNetworkInformationEntity(DelegateExecution execution, NetworkTopologyOperationInputEntity networkTopologyOperationInputEntity) {
86         NetworkInformationEntity networkInformationEntity = new NetworkInformationEntity();
87         {
88             OnapModelInformationEntity onapModelInformationEntity = getOnapModelInformationEntity(execution);
89             networkInformationEntity.setOnapModelInformation(onapModelInformationEntity);
90         }
91         networkTopologyOperationInputEntity.setNetworkInformation(networkInformationEntity);
92     }
93 }