3817b60e27128fc8a0c7668910243ac2ee959dcb
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceinventory / jolt / GetServiceInventoryJsonTransformer.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 GetServiceInventoryJsonTransformer {
30
31     private Chainr chainr;
32
33     private static final Logger LOGGER = LoggerFactory.getLogger(GetServiceInventoryJsonTransformer.class);
34
35
36     public GetServiceInventoryJsonTransformer() {
37         List<Object> specs = JsonUtils.classpathToList("/jolt/getServiceInventory.json");
38         this.chainr = Chainr.fromSpec(specs);
39     }
40
41     public Object transform(Object serviceSpec) {
42         Object output = null;
43         try {
44             output = chainr.transform(serviceSpec);
45         } catch (JoltException joE) {
46             LOGGER.error("Unable to transform SDC response with JOLT Transformer : " + joE.getMessage());
47             throw new TechnicalException("Error while parsing ONAP response");
48         }
49         return output;
50     }
51
52 }