Merge "Remove unnecessary stuff from northbound directory of A1 controller"
[nonrtric.git] / sdnc-a1-controller / northbound / nonrt-ric-api / provider / src / main / java / org / o_ran_sc / nonrtric / sdnc_a1 / northbound / restadapter / RestAdapterImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
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  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.o_ran_sc.nonrtric.sdnc_a1.northbound.restadapter;
22
23 import org.springframework.http.HttpEntity;
24 import org.springframework.http.HttpHeaders;
25 import org.springframework.http.HttpMethod;
26 import org.springframework.http.MediaType;
27 import org.springframework.http.ResponseEntity;
28 import org.springframework.web.client.RestTemplate;
29
30 /**
31  * This class provides the Generic Rest Adapter interface to the RestTemplate
32  *
33  * @author lathishbabu.ganesan@est.tech
34  *
35  */
36
37 public class RestAdapterImpl implements RestAdapter {
38
39   private RestTemplate restTemplate;
40
41   public RestAdapterImpl() {
42     restTemplate = new RestTemplate();
43   }
44
45   private HttpEntity<?> getHttpEntity(final Object object) {
46     return new HttpEntity<>(object);
47   }
48
49   @Override
50   public <T> ResponseEntity<T> get(String uri, Class<?> clazz) {
51     HttpEntity<?> entity = getHttpEntity(null);
52     return invokeHttpRequest(uri, HttpMethod.GET, clazz, entity);
53   }
54
55   @Override
56   public <T> ResponseEntity<T> put(String uri, String body, Class<T> clazz) {
57     HttpHeaders headers = new HttpHeaders();
58     headers.setContentType(MediaType.APPLICATION_JSON);
59     HttpEntity<String> entity = new HttpEntity<>(body, headers);
60     return invokeHttpRequest(uri, HttpMethod.PUT, clazz, entity);
61   }
62
63   @Override
64   public <T> ResponseEntity<T> delete(String uri) {
65     HttpEntity<?> entity = getHttpEntity(null);
66     return invokeHttpRequest(uri, HttpMethod.DELETE, null, entity);
67   }
68
69   @SuppressWarnings("unchecked")
70   private <T> ResponseEntity<T> invokeHttpRequest(String uri, HttpMethod httpMethod, Class<?> clazz,
71       HttpEntity<?> entity) {
72     return (ResponseEntity<T>) restTemplate.exchange(uri, httpMethod, entity, clazz);
73   }
74 }