Added input parameter loading handling from SDNC
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / adapter / vnfm / tasks / InputParameterRetrieverTask.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks;
21
22 import static org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks.Constants.INPUT_PARAMETER;
23 import static org.onap.so.bpmn.servicedecomposition.entities.ResourceKey.GENERIC_VNF_ID;
24
25 import org.onap.so.bpmn.common.BuildingBlockExecution;
26 import org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks.utils.InputParameter;
27 import org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks.utils.InputParametersProvider;
28 import org.onap.so.bpmn.infrastructure.adapter.vnfm.tasks.utils.NullInputParameter;
29 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
30 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.stereotype.Component;
35
36 /**
37  * This class retrieve input parameters
38  * 
39  * @author waqas.ikram@est.tech
40  */
41 @Component
42 public class InputParameterRetrieverTask {
43
44     private static final Logger LOGGER = LoggerFactory.getLogger(InputParameterRetrieverTask.class);
45
46     private final InputParametersProvider inputParametersProvider;
47
48     private final ExtractPojosForBB extractPojosForBB;
49
50     @Autowired
51     public InputParameterRetrieverTask(final InputParametersProvider inputParametersProvider,
52             final ExtractPojosForBB extractPojosForBB) {
53         this.inputParametersProvider = inputParametersProvider;
54         this.extractPojosForBB = extractPojosForBB;
55     }
56
57     public void getInputParameters(final BuildingBlockExecution execution) {
58         try {
59             LOGGER.debug("Executing getInputParameters  ...");
60
61             final GenericVnf vnf = extractPojosForBB.extractByKey(execution, GENERIC_VNF_ID);
62             final InputParameter inputParameter = inputParametersProvider.getInputParameter(vnf);
63
64             LOGGER.debug("inputParameter: {}", inputParameter);
65             execution.setVariable(INPUT_PARAMETER, inputParameter);
66
67             LOGGER.debug("Finished executing getInputParameters ...");
68         } catch (final Exception exception) {
69             LOGGER.error("Unable to invoke create and instantiation request", exception);
70             execution.setVariable(INPUT_PARAMETER, NullInputParameter.NULL_INSTANCE);
71         }
72     }
73
74 }