reduced code smells
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / adapter / network / tasks / NetworkAdapterUpdateTasks.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.bpmn.infrastructure.adapter.network.tasks;
24
25 import org.onap.so.adapters.nwrest.UpdateNetworkRequest;
26 import org.onap.so.adapters.nwrest.UpdateNetworkResponse;
27 import org.onap.so.bpmn.common.BuildingBlockExecution;
28 import org.onap.so.bpmn.servicedecomposition.bbobjects.L3Network;
29 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
30 import org.onap.so.bpmn.servicedecomposition.entities.GeneralBuildingBlock;
31 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
32 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
33 import org.onap.so.client.adapter.network.mapper.NetworkAdapterObjectMapper;
34 import org.onap.so.client.exception.ExceptionBuilder;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.stereotype.Component;
37
38 @Component
39 public class NetworkAdapterUpdateTasks {
40
41     @Autowired
42     private ExtractPojosForBB extractPojosForBB;
43     @Autowired
44     private NetworkAdapterObjectMapper networkAdapterObjectMapper;
45     @Autowired
46     private ExceptionBuilder exceptionUtil;
47
48     public void updateNetwork(BuildingBlockExecution execution) {
49         try {
50             GeneralBuildingBlock gBBInput = execution.getGeneralBuildingBlock();
51             ServiceInstance serviceInstance =
52                     extractPojosForBB.extractByKey(execution, ResourceKey.SERVICE_INSTANCE_ID);
53             L3Network l3Network = extractPojosForBB.extractByKey(execution, ResourceKey.NETWORK_ID);
54
55             UpdateNetworkRequest updateNetworkRequest = networkAdapterObjectMapper.createNetworkUpdateRequestMapper(
56                     gBBInput.getRequestContext(), gBBInput.getCloudRegion(), gBBInput.getOrchContext(), serviceInstance,
57                     l3Network, gBBInput.getUserInput(), gBBInput.getCustomer());
58             execution.setVariable("networkAdapterRequest", updateNetworkRequest);
59
60         } catch (Exception ex) {
61             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
62         }
63     }
64
65     public void processResponseFromOpenstack(BuildingBlockExecution execution) {
66         try {
67             UpdateNetworkResponse updateNetworkResponse = execution.getVariable("updateNetworkResponse");
68             if (updateNetworkResponse == null) {
69                 throw new Exception("No response was sent back from NetworkAdapterRestV1 subflow.");
70             }
71         } catch (Exception ex) {
72             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
73         }
74     }
75 }