Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceinventory / NbiClient.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
4  *     Licensed under the Apache License, Version 2.0 (the "License");
5  *     you may not use this file except in compliance with the License.
6  *     You may obtain a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *     Unless required by applicable law or agreed to in writing, software
11  *     distributed under the License is distributed on an "AS IS" BASIS,
12  *     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *     See the License for the specific language governing permissions and
14  *     limitations under the License.
15  */
16
17 package org.onap.nbi.apis.serviceinventory;
18
19 import java.util.LinkedHashMap;
20 import java.util.Map;
21 import org.springframework.beans.factory.annotation.Value;
22 import org.springframework.http.HttpHeaders;
23 import org.springframework.http.ResponseEntity;
24 import org.springframework.stereotype.Service;
25
26 @Service
27 public class NbiClient extends BaseClient {
28
29     @Value("${nbi.url}")
30     private String nbiUrl;
31
32     public Map getServiceSpecification(String id) {
33         StringBuilder callURL = new StringBuilder().append(nbiUrl).append("/serviceSpecification/").append(id);
34         ResponseEntity<Object> response = callApiGet(callURL.toString(), new HttpHeaders());
35         return (LinkedHashMap) response.getBody();
36     }
37 }