a14204fa62d952c5abbf0e430e045aa07db88437
[dcaegen2/platform.git] / mod / bpgenerator / onap / src / main / java / org / onap / blueprintgenerator / service / common / InterfacesService.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 import org.onap.blueprintgenerator.model.common.Interfaces;
27 import org.onap.blueprintgenerator.model.common.Start;
28 import org.onap.blueprintgenerator.model.componentspec.OnapComponentSpec;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.stereotype.Service;
31
32 import java.util.HashMap;
33 import java.util.LinkedHashMap;
34 import java.util.Map;
35
36 /**
37  * @author : Ravi Mantena
38  * @date 10/16/2020 Application: ONAP - Blueprint Generator Common ONAP Service to add Interfaces
39  */
40 @Service
41 public class InterfacesService {
42
43     @Autowired
44     private StartService startService;
45
46     /**
47      * Creates Interface to include Start and Start inputs sections in BP for given Inputs and
48      * ComponentSpec
49      *
50      * @param inputs Inputs
51      * @param onapComponentSpec  OnapComponentSpec
52      * @return
53      */
54     public Map<String, Object> createInterface(
55         Map<String, LinkedHashMap<String, Object>> inputs, OnapComponentSpec onapComponentSpec) {
56
57         Map<String, Object> response = new HashMap<>();
58         Interfaces interfaces = new Interfaces();
59
60         Map<String, Object> startResponse = startService.createStart(inputs, onapComponentSpec);
61         inputs = (Map<String, LinkedHashMap<String, Object>>) startResponse.get("inputs");
62
63         interfaces.setStart((Start) startResponse.get("start"));
64
65         response.put("interfaces", interfaces);
66         response.put("inputs", inputs);
67         return response;
68     }
69 }