Uses of Enum Class
org.seppiko.commons.utils.http.HttpMethod
Packages that use HttpMethod
-
Uses of HttpMethod in org.seppiko.commons.utils.http
Methods in org.seppiko.commons.utils.http that return HttpMethodModifier and TypeMethodDescriptionstatic HttpMethodReturn anHttpMethodobject for the given value.static HttpMethodReturns the enum constant of this class with the specified name.static HttpMethod[]HttpMethod.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.seppiko.commons.utils.http with parameters of type HttpMethodModifier and TypeMethodDescriptionstatic HttpRequestHttpClientUtil.getRequest(String url, HttpMethod method, int timeout, HttpHeaders headers, byte[] requestBody) Get Request object with byte arraystatic HttpRequestHttpClientUtil.getRequest(String url, HttpMethod method, int timeout, HttpHeaders headers, InputStream requestBody) Get Request object with inputstreamstatic HttpRequestHttpClientUtil.getRequest(String url, HttpMethod method, int timeout, HttpHeaders headers, String requestBody) Get Request object with Stringprotected static HttpRequestHttpClientUtil.getRequestRaw(URI uri, HttpMethod method, int timeout, String[] headers, HttpRequest.BodyPublisher requestBody) Get HTTP request rawstatic <R,T> HttpResponse<T> AsyncHttpClientUtil.sendAsyncRequest(String url, HttpMethod method, int timeout, HttpHeaders headers, R requestBody, Class<T> responseType, InetSocketAddress proxy) send async http requeststatic <R,T> HttpResponse<T> HttpClientUtil.sendRequest(String url, HttpMethod method, int timeout, HttpHeaders headers, R requestBody, Class<T> responseType, InetSocketAddress proxy) send http request