b7ddc11f35a471384bafb608a2568aef39fd066f
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.onap.so.bpmn.infrastructure.flowspecific.tasks;
23
24 import java.util.Map;
25 import org.onap.so.adapters.nwrest.CreateNetworkRequest;
26 import org.onap.so.bpmn.common.BuildingBlockExecution;
27 import org.onap.so.bpmn.servicedecomposition.bbobjects.L3Network;
28 import org.onap.so.bpmn.servicedecomposition.bbobjects.ServiceInstance;
29 import org.onap.so.bpmn.servicedecomposition.entities.GeneralBuildingBlock;
30 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
31 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
32 import org.onap.so.client.adapter.network.mapper.NetworkAdapterObjectMapper;
33 import org.onap.so.client.exception.ExceptionBuilder;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36 import org.springframework.beans.factory.annotation.Autowired;
37 import org.springframework.stereotype.Component;
38
39 @Component
40 public class CreateNetwork {
41
42
43     @Autowired
44     private ExceptionBuilder exceptionUtil;
45     @Autowired
46     private ExtractPojosForBB extractPojosForBB;
47     @Autowired
48     private NetworkAdapterObjectMapper networkAdapterObjectMapper;
49
50     /**
51      * BPMN access method to build CreateNetworkRequest object
52      * 
53      */
54     public void buildCreateNetworkRequest(BuildingBlockExecution execution) throws Exception {
55         try {
56             GeneralBuildingBlock gBBInput = execution.getGeneralBuildingBlock();
57             ServiceInstance serviceInstance =
58                     extractPojosForBB.extractByKey(execution, ResourceKey.SERVICE_INSTANCE_ID);
59             L3Network l3Network = extractPojosForBB.extractByKey(execution, ResourceKey.NETWORK_ID);
60             Map<String, String> userInput = gBBInput.getUserInput();
61             String cloudRegionPo = execution.getVariable("cloudRegionPo");
62
63             CreateNetworkRequest createNetworkRequest = networkAdapterObjectMapper.createNetworkRequestMapper(
64                     gBBInput.getRequestContext(), gBBInput.getCloudRegion(), gBBInput.getOrchContext(), serviceInstance,
65                     l3Network, userInput, cloudRegionPo, gBBInput.getCustomer());
66
67             // set CreateNetowrkRequest object on execution to be re-used within current BB
68             execution.setVariable("createNetworkRequest", createNetworkRequest);
69         } catch (Exception ex) {
70             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
71         }
72     }
73 }