Merge "get resource data for operational passthrough"
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / client / DmiRestClient.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 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.onap.cps.ncmp.api.impl.client;
22
23 import org.onap.cps.ncmp.api.impl.config.NcmpConfiguration.DmiProperties;
24 import org.springframework.http.HttpEntity;
25 import org.springframework.http.HttpHeaders;
26 import org.springframework.http.HttpMethod;
27 import org.springframework.http.ResponseEntity;
28 import org.springframework.stereotype.Component;
29 import org.springframework.web.client.RestTemplate;
30
31 @Component
32 public class DmiRestClient {
33
34     private RestTemplate restTemplate;
35     private DmiProperties dmiProperties;
36
37     public DmiRestClient(final RestTemplate restTemplate, final DmiProperties dmiProperties) {
38         this.restTemplate = restTemplate;
39         this.dmiProperties = dmiProperties;
40     }
41
42     public ResponseEntity<Object> putOperationWithJsonData(final String dmiResourceUrl,
43                                                             final String jsonData, final HttpHeaders headers) {
44         final var httpEntity = new HttpEntity<>(jsonData, configureHttpHeaders(headers));
45         return restTemplate.exchange(dmiResourceUrl, HttpMethod.PUT, httpEntity, Object.class);
46     }
47
48     private HttpHeaders configureHttpHeaders(final HttpHeaders httpHeaders) {
49         httpHeaders.setBasicAuth(dmiProperties.getAuthUsername(), dmiProperties.getAuthPassword());
50         return httpHeaders;
51     }
52 }