Class SimpleRestClient
- java.lang.Object
-
- step.plugins.notification.gateway.SimpleRestClient
-
public class SimpleRestClient extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SimpleRestClient.SSLTrustAny
-
Field Summary
Fields Modifier and Type Field Description protected jakarta.ws.rs.client.Client
client
-
Constructor Summary
Constructors Constructor Description SimpleRestClient()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.Response
GET(String url)
<T> T
GET(String url, Class<T> responseType)
<IN> jakarta.ws.rs.core.Response
POST(String url, IN requestEntity)
<IN,OUT>
OUTPOST(String url, IN request, Class<OUT> responseClass)
jakarta.ws.rs.core.Response
send(String url, String method, jakarta.ws.rs.core.MultivaluedMap<String,Object> headers, String body)
-