d836877846a1d2b5692f9cb8ae6acfacdbeefa8e
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceinventory / jolt / FindServiceInventoryJsonTransformer.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.serviceinventory.jolt;
18
19 import java.util.List;
20 import org.onap.nbi.exceptions.TechnicalException;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23 import org.springframework.stereotype.Service;
24 import com.bazaarvoice.jolt.Chainr;
25 import com.bazaarvoice.jolt.JsonUtils;
26 import com.bazaarvoice.jolt.exception.JoltException;
27
28 @Service
29 public class FindServiceInventoryJsonTransformer {
30
31     private Chainr chainr;
32
33     private static final Logger LOGGER = LoggerFactory.getLogger(FindServiceInventoryJsonTransformer.class);
34
35     public FindServiceInventoryJsonTransformer() {
36         List<Object> specs = JsonUtils.classpathToList("/jolt/findServiceInventory.json");
37         this.chainr = Chainr.fromSpec(specs);
38     }
39
40     public Object transform(Object serviceSpec) {
41         Object output = null;
42         try {
43             output = chainr.transform(serviceSpec);
44         } catch (JoltException joE) {
45             LOGGER.error("Unable to transform SDC response with JOLT Transformer : " + joE.getMessage());
46             throw new TechnicalException("Error while parsing ONAP response");
47         }
48         return output;
49     }
50
51 }