c69afb2f50f4c401d047a0d145b7c8c1c6dc4141
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / clients / AsyncRestClient.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.policyagent.clients;
21
22 import org.springframework.http.MediaType;
23 import org.springframework.web.reactive.function.client.WebClient;
24 import reactor.core.publisher.Mono;
25
26 public class AsyncRestClient {
27     private final WebClient client;
28
29     public AsyncRestClient(String baseUrl) {
30         this.client = WebClient.create(baseUrl);
31     }
32
33     public Mono<String> put(String uri, String body) {
34         return client.put() //
35             .uri(uri) //
36             .contentType(MediaType.APPLICATION_JSON) //
37             .syncBody(body) //
38             .retrieve() //
39             .bodyToMono(String.class);
40     }
41
42     public Mono<String> get(String uri) {
43         return client.get() //
44             .uri(uri) //
45             .retrieve() //
46             .bodyToMono(String.class);
47     }
48
49     public Mono<Void> delete(String uri) {
50         return client.delete() //
51             .uri(uri) //
52             .retrieve() //
53             .bodyToMono(Void.class);
54     }
55 }