Add Apache license header per file
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / servicecatalog / ServiceSpecificationService.java
1 /**
2  *
3  *     Copyright (c) 2017 Orange.  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 package org.onap.nbi.apis.servicecatalog;
18
19 import java.util.LinkedHashMap;
20 import java.util.List;
21 import org.onap.nbi.apis.servicecatalog.jolt.FindServiceSpecJsonTransformer;
22 import org.onap.nbi.apis.servicecatalog.jolt.GetServiceSpecJsonTransformer;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.springframework.beans.factory.annotation.Autowired;
26 import org.springframework.stereotype.Service;
27 import org.springframework.util.MultiValueMap;
28
29 @Service
30 public class ServiceSpecificationService {
31
32     @Autowired
33     SdcClient sdcClient;
34
35     @Autowired
36     GetServiceSpecJsonTransformer getServiceSpecJsonTransformer;
37
38     @Autowired
39     FindServiceSpecJsonTransformer findServiceSpecJsonTransformer;
40
41     @Autowired
42     ToscaInfosProcessor toscaInfosProcessor;
43
44     private static final Logger LOGGER = LoggerFactory.getLogger(ServiceSpecificationService.class);
45
46
47     public LinkedHashMap get(String serviceSpecId) {
48         LinkedHashMap sdcResponse = sdcClient.callGet(serviceSpecId);
49         LinkedHashMap serviceCatalogResponse = (LinkedHashMap) getServiceSpecJsonTransformer.transform(sdcResponse);
50         LinkedHashMap toscaInfosTopologyTemplate = toscaInfosProcessor.getToscaInfos(serviceCatalogResponse);
51         if (toscaInfosTopologyTemplate != null) {
52             LOGGER.debug("tosca file found, retrieving informations");
53             toscaInfosProcessor.buildResponseWithToscaInfos(toscaInfosTopologyTemplate, serviceCatalogResponse);
54         } else {
55             LOGGER.debug("no tosca file found, partial response");
56         }
57         return serviceCatalogResponse;
58     }
59
60
61     public List<LinkedHashMap> find(MultiValueMap<String, String> parametersMap) {
62         List<LinkedHashMap> sdcResponse = sdcClient.callFind(parametersMap);
63         List<LinkedHashMap> serviceCatalogResponse =
64                 (List<LinkedHashMap>) findServiceSpecJsonTransformer.transform(sdcResponse);
65         return serviceCatalogResponse;
66     }
67 }