ee7f3697aebb31d4bd5061962ef349f8251cb793
[so.git] /
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 java.util.Optional;
26
27 import org.onap.so.adapters.nwrest.UpdateNetworkResponse;
28 import org.onap.so.bpmn.common.BuildingBlockExecution;
29 import org.onap.so.bpmn.servicedecomposition.bbobjects.L3Network;
30 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
31 import org.onap.so.bpmn.servicedecomposition.entities.GeneralBuildingBlock;
32 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
33 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
34 import org.onap.so.client.exception.ExceptionBuilder;
35 import org.onap.so.client.orchestration.NetworkAdapterResources;
36 import org.slf4j.Logger;
37 import org.slf4j.LoggerFactory;
38 import org.springframework.beans.factory.annotation.Autowired;
39 import org.springframework.stereotype.Component;
40
41 @Component
42 public class NetworkAdapterUpdateTasks {
43         private static final Logger logger =  LoggerFactory.getLogger(NetworkAdapterUpdateTasks.class);
44         
45         @Autowired
46         private ExtractPojosForBB extractPojosForBB;
47         @Autowired
48         private NetworkAdapterResources networkAdapterResources;
49         @Autowired
50         private ExceptionBuilder exceptionUtil;
51         
52         public void updateNetwork(BuildingBlockExecution execution) {
53                 try {
54                         GeneralBuildingBlock gBBInput = execution.getGeneralBuildingBlock();
55                         ServiceInstance serviceInstance = extractPojosForBB.extractByKey(execution, ResourceKey.SERVICE_INSTANCE_ID, execution.getLookupMap().get(ResourceKey.SERVICE_INSTANCE_ID));
56                         L3Network l3Network = extractPojosForBB.extractByKey(execution, ResourceKey.NETWORK_ID, execution.getLookupMap().get(ResourceKey.NETWORK_ID));
57                         Optional<UpdateNetworkResponse> oUpdateNetworkResponse = networkAdapterResources.updateNetwork(gBBInput.getRequestContext(), gBBInput.getCloudRegion(), gBBInput.getOrchContext(), serviceInstance, l3Network, gBBInput.getUserInput(), gBBInput.getCustomer());
58                         
59                         if(oUpdateNetworkResponse.isPresent()) {
60                                 UpdateNetworkResponse updateNetworkResponse = oUpdateNetworkResponse.get();
61                                 execution.setVariable("NetworkAdapterUpdateNetworkResponse", updateNetworkResponse);
62                         }
63                 } catch(Exception ex) {
64                         exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
65                 }
66         }
67 }