3fbfdb1378f44c910660fbd8eba9573113192ba1
[dcaegen2/platform.git] / mod / bpgenerator / onap / src / main / java / org / onap / blueprintgenerator / service / common / StartService.java
1 /*
2  *
3  *  * ============LICENSE_START=======================================================
4  *  *  org.onap.dcae
5  *  *  ================================================================================
6  *  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
7  *  *  ================================================================================
8  *  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  *  you may not use this file except in compliance with the License.
10  *  *  You may obtain a copy of the License at
11  *  *
12  *  *       http://www.apache.org/licenses/LICENSE-2.0
13  *  *
14  *  *  Unless required by applicable law or agreed to in writing, software
15  *  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  *  See the License for the specific language governing permissions and
18  *  *  limitations under the License.
19  *  *  ============LICENSE_END=========================================================
20  *
21  *
22  */
23
24 package org.onap.blueprintgenerator.service.common;
25
26
27 import org.onap.blueprintgenerator.model.common.Start;
28 import org.onap.blueprintgenerator.model.common.StartInputs;
29 import org.onap.blueprintgenerator.model.componentspec.OnapComponentSpec;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Service;
32
33 import java.util.HashMap;
34 import java.util.LinkedHashMap;
35 import java.util.Map;
36
37 /**
38  * @author : Ravi Mantena
39  * @date 10/16/2020
40  * Application: ONAP - Blueprint Generator
41  * Common ONAP Service used by ONAP and DMAAP Blueprint to add Start Node
42  */
43
44
45 @Service
46 public class StartService {
47
48     @Autowired
49     private StartInputsService startInputsService;
50
51     // Method to create Start for Interfaces
52     public Map<String,Object> createStart(Map<String, LinkedHashMap<String, Object>> inputs, OnapComponentSpec onapComponentSpec) {
53         Map<String,Object> response = new HashMap<>();
54         Start start = new Start();
55
56         Map<String, Object> startInputsResponse = startInputsService.createStartInputs(inputs, onapComponentSpec);
57         inputs = (Map<String, LinkedHashMap<String, Object>>) startInputsResponse.get("inputs");
58         start.setInputs((StartInputs) startInputsResponse.get("startInputs"));
59
60         response.put("start", start);
61         response.put("inputs", inputs);
62         return response;
63     }
64
65 }