All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jsunsoft.http.WebTarget Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2024. Benik Arakelyan
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.jsunsoft.http;

import org.apache.hc.client5.http.config.RequestConfig;
import org.apache.hc.core5.http.*;
import org.apache.hc.core5.http.io.entity.StringEntity;
import org.apache.hc.core5.http.message.BasicHeader;
import org.apache.hc.core5.http.message.BasicNameValuePair;
import org.apache.hc.core5.http.protocol.HttpContext;
import org.apache.hc.core5.net.WWWFormCodec;
import org.apache.hc.core5.util.Args;

import java.net.URI;
import java.nio.charset.Charset;
import java.util.Collection;
import java.util.Map;

import static java.nio.charset.StandardCharsets.UTF_8;

/**
 * A resource target identified by the resource URI.
 */
public interface WebTarget {

    /**
     * Append path to the URI of the current target instance.
     *
     * @param path the path.
     * @return target instance.
     * @throws NullPointerException if path is {@code null}.
     */
    WebTarget path(final String path);

    /**
     * Set path to the URI of the current target instance.
     *
     * 

* Note: If path already existed this will replace it. * * @param path the path. * @return target instance. * @throws NullPointerException if path is {@code null}. */ WebTarget setPath(final String path); /** * Invoke {@linkplain #request(HttpMethod, HttpContext)} with default http context * * @param method the http method. * @return the response to the request. This is always a final response, never an intermediate response with an 1xx status code. * @see #request(HttpMethod, HttpContext) */ default Response request(final HttpMethod method) { return request(method, (HttpContext) null); } /** * Invoke an arbitrary method for the current request. * * @param method the http method. * @param context the {@linkplain HttpContext} * @return the response to the request. This is always a final response, never an intermediate response with an 1xx status code. * Whether redirects or authentication challenges will be returned * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of a http protocol error. * @see HttpContext */ Response request(final HttpMethod method, HttpContext context); /** * Invoke an arbitrary method for the current request. * * @param method the http method. * @param httpEntity httpEntity * @return the response to the request. This is always a final response, never an intermediate response with an 1xx status code. * Whether redirects or authentication challenges will be returned * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. */ Response request(final HttpMethod method, final HttpEntity httpEntity); /** * Invoke an arbitrary method for the current request. * * @param method the http method. * @param httpEntity httpEntity * @param responseType Java type the response entity will be converted to. * @param response entity type. * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod, HttpEntity) * @see ResponseHandler */ ResponseHandler request(final HttpMethod method, final HttpEntity httpEntity, Class responseType); /** * Invoke an arbitrary method for the current request. * * @param method the http method. * @param httpEntity httpEntity * @param responseType representation of a TypeReference Java type the response entity will be converted to. * @param response entity type. * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod, HttpEntity) * @see ResponseHandler */ ResponseHandler request(final HttpMethod method, final HttpEntity httpEntity, TypeReference responseType); /** * Invoke an arbitrary method for the current request. * * @param method the http method. * @param responseType Java type the response entity will be converted to. * @param response entity type. * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod) * @see ResponseHandler */ ResponseHandler request(final HttpMethod method, Class responseType); /** * Invoke an arbitrary method for the current request. * * @param method the http method. * @param responseType epresentation of a TypeReference Java type the response entity will be converted to. * @param response entity type. * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod) * @see ResponseHandler */ ResponseHandler request(final HttpMethod method, TypeReference responseType); /** * Invoke an arbitrary method for the current request. *

* Mainly designed to use in case when response body aren't interested. *

* Any attempt to get content from {@code ResponseHandler} will be thrown exception * * @param method the http method. * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod) * @see ResponseHandler */ default ResponseHandler rawRequest(final HttpMethod method) { return request(method, Void.class); } /** * Invoke an arbitrary method for the current request. *

* Mainly designed to use in case when response body aren't interested. *

* Any attempt to get content from {@code ResponseHandler} will be thrown exception * * @param method the http method. * @param httpEntity httpEntity * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod) * @see ResponseHandler */ default ResponseHandler rawRequest(final HttpMethod method, final HttpEntity httpEntity) { return request(method, httpEntity, Void.class); } /** * Invoke an arbitrary method for the current request. *

* Mainly designed to use in case when response body aren't interested. *

* Any attempt to get content from {@code ResponseHandler} will be thrown exception * * @param method the http method. * @param payload payload * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error. * @see #request(HttpMethod) * @see ResponseHandler */ default ResponseHandler rawRequest(final HttpMethod method, final String payload) { return request(method, payload, Void.class); } /** * Invoke an arbitrary method for the current request with serializing body depends on a Content-type. *

* Mainly designed to use in case when response body aren't interested. *

* Any attempt to get content from {@code ResponseHandler} will be thrown exception * * @param method the http method. * @param body payload object * @return the ResponseHandler instance to the request and pass converted response in ResponseHandler instance. * or handled automatically depends on the implementation and configuration of this client. * @throws ResponseException in case of any IO problem or the connection was aborted. * @throws RequestException in case of an http protocol error or body serialization failed. * @see #request(HttpMethod, String) * @see #request(HttpMethod) * @see ResponseHandler */ ResponseHandler rawRequest(final HttpMethod method, final Object body); /** * Removes the given header. * * @param header the header to remove * @return WebTarget instance */ WebTarget removeHeader(final Header header); /** * Removes all headers with name. * * @param name the header name * @return WebTarget instance */ WebTarget removeHeaders(final String name); /** * Replaces the first occurence of the header with the same name. If no header with * the same name is found the given header is added to the end of the list. * * @param header the new header that should replace the first header with the same * name if present in the list. * @return WebTarget instance */ WebTarget updateHeader(final Header header); /** * Adds the given header to the request. The order in which this header was added is preserved. * * @param header header instance. Can't be null * @return WebTarget instance */ WebTarget addHeader(final Header header); /** * Sets the charset for the request. * * @param charset the charset to set. * @return WebTarget instance */ WebTarget setCharset(final Charset charset); /** * The same as {@link #request(HttpMethod, HttpEntity, Class)} wrapped {@code payload} into {@link StringEntity} * * @param method the http method. * @param payload payload * @param responseType Java type the response entity will be converted to. * @param response entity type * @return ResponseHandler instance */ ResponseHandler request(final HttpMethod method, final String payload, Class responseType); /** * The same as {@link #request(HttpMethod, String, Class)} with serializing body depends on a Content-type into String {@code payload} * * @param method the http method. * @param body payload * @param responseType Java type the response entity will be converted to. * @param response entity type * @return ResponseHandler instance */ ResponseHandler request(final HttpMethod method, final Object body, Class responseType); /** * The same as {@link #request(HttpMethod, HttpEntity, TypeReference)} wrapped {@code payload} into {@link StringEntity} * * @param method the http method. * @param payload payload * @param responseType representation of a TypeReference Java type the response entity will be converted to. * @param response entity type * @return ResponseHandler instance */ ResponseHandler request(final HttpMethod method, final String payload, TypeReference responseType); /** * The same as {@link #request(HttpMethod, String, TypeReference)} with serializing body depends on a Content-type into String {@code payload} * * @param method the http method. * @param body payload * @param responseType representation of a TypeReference Java type the response entity will be converted to. * @param response entity type * @return ResponseHandler instance */ ResponseHandler request(final HttpMethod method, final Object body, TypeReference responseType); /** * The same as {@link #request(HttpMethod, HttpEntity)} wrapped {@code payload} into {@link StringEntity} * * @param method the http method. * @param payload payload * @return Response instance */ Response request(final HttpMethod method, final String payload); /** * The same as {@link #request(HttpMethod, HttpEntity)} with serializing body depends on a Content-type into String {@code payload} * * @param method the http method. * @param body payload * @return Response instance */ Response request(final HttpMethod method, final Object body); /** * Adds the given name and value as header to the request. * * @param name name of header. Can't be null * @param value value of header * @return WebTarget instance */ default WebTarget addHeader(final String name, final String value) { ArgsCheck.notNull(name, "name"); return addHeader(new BasicHeader(name, value)); } /** * Adds the given headers to the request. The order in which this header was added is preserved. * * @param headers collections of headers * @return WebTarget instance */ default WebTarget addHeaders(final Collection headers) { ArgsCheck.notNull(headers, "headers"); WebTarget result = this; for (Header header : headers) { result = result.addHeader(header); } return result; } /** * Replaces the first occurence of the header with the same name by the value. If no header with * the same name is found the given header is added to the end of the list. * * @param name name of header. Can't be null * @param value value of header * @return WebTarget instance */ default WebTarget updateHeader(final String name, final String value) { ArgsCheck.notNull(name, "name"); return updateHeader(new BasicHeader(name, value)); } /** * Sets content type to header * * @param contentType content type of request header * @return WebTarget instance */ default WebTarget addContentType(final ContentType contentType) { return addHeader(HttpHeaders.CONTENT_TYPE, contentType.toString()); } /** * Sets the {@code requestConfig} to the request * * @param requestConfig requestConfig * @return WebTarget instance * @see RequestConfig */ WebTarget setRequestConfig(final RequestConfig requestConfig); /** * Added parameter into request * * @param nameValuePair nameValuePair * @return WebTarget instance */ WebTarget addParameter(final NameValuePair nameValuePair); /** * @return URI as string */ String getURIString(); /** * @return The URI */ URI getURI(); /** * Add parameters into request * * @param parameters nameValuePairs * @return WebTarget instance */ default WebTarget addParameters(final NameValuePair... parameters) { ArgsCheck.notNull(parameters, "parameters"); WebTarget result = this; for (NameValuePair parameter : parameters) { result = result.addParameter(parameter); } return result; } /** * Add parameters from queryString. *

* For example: queryString = {@code "param1=param1¶m2=param2" is the same as call} *

{@code
     *     addParameter(param1, param1).addParameter(param2, param2);
     * }
* Default charset is "UTF-8". * * @param queryString queryString * @param charset charset * @return WebTarget instance */ default WebTarget addParameters(final String queryString, final Charset charset) { ArgsCheck.notNull(queryString, "queryString"); ArgsCheck.notNull(charset, "charset"); return addParameters(WWWFormCodec.parse(queryString, charset)); } /** * Add parameters from queryString. *

* For example: queryString = {@code "param1=param1¶m2=param2" is the same as call} *

{@code
     *     addParameter(param1, param1).addParameter(param2, param2);
     * }
* Default charset is "UTF-8". * * @param queryString queryString * @return WebTarget instance */ default WebTarget addParameters(final String queryString) { return addParameters(queryString, UTF_8); } /** * Add parameters into request as [nameValues[0]: nameValues[1], nameValues[2]: nameValues[3], ... e.t.c.]
So * name1 = nameValues[0], value1 = nameValues[1]; name2 = nameValues[1], value2 = nameValues[2] ... e.t.c. * * @param nameValues array of nameValue * @return WebTarget instance * @throws IllegalArgumentException When length of parameter nameValues is odd or ZERO. * @throws NullPointerException when param nameValues is null */ default WebTarget addParameters(final String... nameValues) { int nameValuesLength = ArgsCheck.notNull(nameValues, "nameValues").length; Args.check(nameValuesLength != 0, "Length of parameter can't be ZERO"); Args.check(nameValuesLength % 2 == 0, "Length of nameValues can't be odd"); WebTarget result = this; int end = nameValuesLength - 2; for (int i = 0; i <= end; i += 2) { result = result.addParameter(new BasicNameValuePair(nameValues[i], nameValues[i + 1])); } return result; } /** * Add parameters into request * * @param parameters nameValuePairs * @return WebTarget instance */ default WebTarget addParameters(final Collection parameters) { ArgsCheck.notNull(parameters, "parameters"); WebTarget result = this; for (NameValuePair parameter : parameters) { result = result.addParameter(parameter); } return result; } /** * Add parameters into request key as request parameter name Value as request parameter value * * @param parameters parameters * @return WebTarget instance */ default WebTarget addParameters(final Map parameters) { ArgsCheck.notNull(parameters, "parameters"); WebTarget result = this; for (Map.Entry entry : parameters.entrySet()) { NameValuePair parameter = new BasicNameValuePair(entry.getKey(), entry.getValue()); result = result.addParameter(parameter); } return result; } /** * Add parameter into request name as request parameter name value as request parameter value * * @param name request parameter name * @param value request parameter value * @return WebTarget instance */ default WebTarget addParameter(final String name, final String value) { ArgsCheck.notNull(name, "name"); return addParameter(new BasicNameValuePair(name, value)); } /** * Invoke HTTP GET method for the current request * * @return the response to the request. * @see #request(HttpMethod) */ default Response get() { return request(HttpMethod.GET); } /** * Invoke HTTP GET method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawGet() { return rawRequest(HttpMethod.GET); } /** * Invoke HTTP GET method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Class) */ default ResponseHandler get(Class responseType) { return request(HttpMethod.GET, responseType); } /** * Invoke HTTP GET method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, TypeReference) */ default ResponseHandler get(TypeReference responseType) { return request(HttpMethod.GET, responseType); } /** * Invoke HTTP PUT method for the current request. * * @return the response to the request. * @see #request(HttpMethod) */ default Response put() { return request(HttpMethod.PUT); } /** * Invoke HTTP PUT method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawPut() { return rawRequest(HttpMethod.PUT); } /** * Invoke HTTP PUT method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, HttpEntity) */ default ResponseHandler rawPut(final HttpEntity httpEntity) { return rawRequest(HttpMethod.PUT, httpEntity); } /** * Invoke HTTP PUT method for the current request * * @param payload the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, String) */ default ResponseHandler rawPut(final String payload) { return rawRequest(HttpMethod.PUT, payload); } /** * The same as {@link #rawPut(String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, Object) */ default ResponseHandler rawPut(final Object body) { return rawRequest(HttpMethod.PUT, body); } /** * Invoke HTTP PUT method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, HttpEntity) */ default Response put(final HttpEntity httpEntity) { return request(HttpMethod.PUT, httpEntity); } /** * Invoke HTTP PUT method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, Class) */ default ResponseHandler put(final HttpEntity httpEntity, Class responseType) { return request(HttpMethod.PUT, httpEntity, responseType); } /** * Invoke HTTP PUT method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, TypeReference) */ default ResponseHandler put(final HttpEntity httpEntity, TypeReference responseType) { return request(HttpMethod.PUT, httpEntity, responseType); } /** * Invoke HTTP PUT method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, Class) */ default ResponseHandler put(final String payload, Class responseType) { return request(HttpMethod.PUT, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, Class)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, Class) */ default ResponseHandler put(final Object body, Class responseType) { return request(HttpMethod.PUT, body, responseType); } /** * Invoke HTTP PUT method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, TypeReference) */ default ResponseHandler put(final String payload, TypeReference responseType) { return request(HttpMethod.PUT, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, TypeReference)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, TypeReference) */ default ResponseHandler put(final Object body, TypeReference responseType) { return request(HttpMethod.PUT, body, responseType); } /** * Invoke HTTP PUT method for the current request with the given payload. * * @param payload the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, String) */ default Response put(final String payload) { return request(HttpMethod.PUT, payload); } /** * The same as {@link #request(HttpMethod, String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, Object) */ default Response put(final Object body) { return request(HttpMethod.PUT, body); } /** * Invoke HTTP PUT method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Class) */ default ResponseHandler put(Class responseType) { return request(HttpMethod.PUT, responseType); } /** * Invoke HTTP PUT method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, TypeReference) */ default ResponseHandler put(TypeReference responseType) { return request(HttpMethod.PUT, responseType); } /** * Invoke HTTP POST method for the current request * * @return the response to the request. * @see #request(HttpMethod) */ default Response post() { return request(HttpMethod.POST); } /** * Invoke HTTP POST method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawPost() { return rawRequest(HttpMethod.POST); } /** * Invoke HTTP POST method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, HttpEntity) */ default ResponseHandler rawPost(final HttpEntity httpEntity) { return rawRequest(HttpMethod.POST, httpEntity); } /** * Invoke HTTP POST method for the current request * * @param payload the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, String) */ default ResponseHandler rawPost(final String payload) { return rawRequest(HttpMethod.POST, payload); } /** * The same as {@link #rawPost(String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawPost(String) */ default ResponseHandler rawPost(final Object body) { return rawRequest(HttpMethod.POST, body); } /** * Invoke HTTP POST method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, HttpEntity) */ default Response post(final HttpEntity httpEntity) { return request(HttpMethod.POST, httpEntity); } /** * Invoke HTTP POST method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, Class) */ default ResponseHandler post(final HttpEntity httpEntity, Class responseType) { return request(HttpMethod.POST, httpEntity, responseType); } /** * Invoke HTTP POST method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, TypeReference) */ default ResponseHandler post(final HttpEntity httpEntity, TypeReference responseType) { return request(HttpMethod.POST, httpEntity, responseType); } /** * Invoke HTTP POST method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, Class) */ default ResponseHandler post(final String payload, Class responseType) { return request(HttpMethod.POST, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, Class)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, Class) */ default ResponseHandler post(final Object body, Class responseType) { return request(HttpMethod.POST, body, responseType); } /** * Invoke HTTP POST method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, TypeReference) */ default ResponseHandler post(final String payload, TypeReference responseType) { return request(HttpMethod.POST, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, TypeReference)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, TypeReference) */ default ResponseHandler post(final Object body, TypeReference responseType) { return request(HttpMethod.POST, body, responseType); } /** * Invoke HTTP POST method for the current request with the given payload. * * @param payload the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, String) */ default Response post(final String payload) { return request(HttpMethod.POST, payload); } /** * The same as {@link #request(HttpMethod, String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, Object) */ default Response post(final Object body) { return request(HttpMethod.POST, body); } /** * Invoke HTTP POST method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Class) */ default ResponseHandler post(Class responseType) { return request(HttpMethod.POST, responseType); } /** * Invoke HTTP POST method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, TypeReference) */ default ResponseHandler post(TypeReference responseType) { return request(HttpMethod.POST, responseType); } /** * Invoke HTTP HEAD method for the current request * * @return the response to the request. * @see #request(HttpMethod) */ default Response head() { return request(HttpMethod.HEAD); } /** * Invoke HTTP HEAD method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawHead() { return rawRequest(HttpMethod.HEAD); } /** * Invoke HTTP DELETE method for the current request * * @return the ResponseHandler instance to the request. * @see #request(HttpMethod) */ default Response delete() { return request(HttpMethod.DELETE); } /** * Invoke HTTP DELETE method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawDelete() { return rawRequest(HttpMethod.DELETE); } /** * Invoke HTTP DELETE method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, HttpEntity) */ default ResponseHandler rawDelete(final HttpEntity httpEntity) { return rawRequest(HttpMethod.DELETE, httpEntity); } /** * Invoke HTTP DELETE method for the current request * * @param payload the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, String) */ default ResponseHandler rawDelete(final String payload) { return rawRequest(HttpMethod.DELETE, payload); } /** * The same as {@link #rawDelete(String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawDelete(String) */ default ResponseHandler rawDelete(final Object body) { return rawRequest(HttpMethod.DELETE, body); } /** * Invoke HTTP DELETE method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, HttpEntity) */ default Response delete(final HttpEntity httpEntity) { return request(HttpMethod.DELETE, httpEntity); } /** * Invoke HTTP DELETE method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, Class) */ default ResponseHandler delete(final HttpEntity httpEntity, Class responseType) { return request(HttpMethod.DELETE, httpEntity, responseType); } /** * Invoke HTTP DELETE method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, TypeReference) */ default ResponseHandler delete(final HttpEntity httpEntity, TypeReference responseType) { return request(HttpMethod.DELETE, httpEntity, responseType); } /** * Invoke HTTP DELETE method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, Class) */ default ResponseHandler delete(final String payload, Class responseType) { return request(HttpMethod.DELETE, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, Class)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, Class) */ default ResponseHandler delete(final Object body, Class responseType) { return request(HttpMethod.DELETE, body, responseType); } /** * Invoke HTTP DELETE method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, TypeReference) */ default ResponseHandler delete(final String payload, TypeReference responseType) { return request(HttpMethod.DELETE, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, TypeReference)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, TypeReference) */ default ResponseHandler delete(final Object body, TypeReference responseType) { return request(HttpMethod.DELETE, body, responseType); } /** * Invoke HTTP DELETE method for the current request with the given payload. * * @param payload the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, String) */ default Response delete(final String payload) { return request(HttpMethod.DELETE, payload); } /** * The same as {@link #request(HttpMethod, String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, Object) */ default Response delete(final Object body) { return request(HttpMethod.DELETE, body); } /** * Invoke HTTP DELETE method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Class) */ default ResponseHandler delete(Class responseType) { return request(HttpMethod.DELETE, responseType); } /** * Invoke HTTP DELETE method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, TypeReference) */ default ResponseHandler delete(TypeReference responseType) { return request(HttpMethod.DELETE, responseType); } /** * Invoke HTTP OPTIONS method for the current request * * @return the response to the request. * @see #request(HttpMethod) */ default Response options() { return request(HttpMethod.OPTIONS); } /** * Invoke HTTP OPTIONS method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawOptions() { return rawRequest(HttpMethod.OPTIONS); } /** * Invoke HTTP OPTIONS method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, HttpEntity) */ default ResponseHandler rawOptions(final HttpEntity httpEntity) { return rawRequest(HttpMethod.OPTIONS, httpEntity); } /** * Invoke HTTP OPTIONS method for the current request * * @param payload the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, String) */ default ResponseHandler rawOptions(final String payload) { return rawRequest(HttpMethod.OPTIONS, payload); } /** * The same as {@link #rawOptions(String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawOptions(String) */ default ResponseHandler rawOptions(final Object body) { return rawRequest(HttpMethod.OPTIONS, body); } /** * Invoke HTTP OPTIONS method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, HttpEntity) */ default Response options(final HttpEntity httpEntity) { return request(HttpMethod.OPTIONS, httpEntity); } /** * Invoke HTTP OPTIONS method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, Class) */ default ResponseHandler options(final HttpEntity httpEntity, Class responseType) { return request(HttpMethod.OPTIONS, httpEntity, responseType); } /** * Invoke HTTP OPTIONS method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, TypeReference) */ default ResponseHandler options(final HttpEntity httpEntity, TypeReference responseType) { return request(HttpMethod.OPTIONS, httpEntity, responseType); } /** * Invoke HTTP OPTIONS method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, Class) */ default ResponseHandler options(final String payload, Class responseType) { return request(HttpMethod.OPTIONS, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, Class)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, Class) */ default ResponseHandler options(final Object body, Class responseType) { return request(HttpMethod.OPTIONS, body, responseType); } /** * Invoke HTTP OPTIONS method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, TypeReference) */ default ResponseHandler options(final String payload, TypeReference responseType) { return request(HttpMethod.OPTIONS, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, TypeReference)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, TypeReference) */ default ResponseHandler options(final Object body, TypeReference responseType) { return request(HttpMethod.OPTIONS, body, responseType); } /** * Invoke HTTP OPTIONS method for the current request with the given payload. * * @param payload the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, String) */ default Response options(final String payload) { return request(HttpMethod.OPTIONS, payload); } /** * The same as {@link #request(HttpMethod, String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, Object) */ default Response options(final Object body) { return request(HttpMethod.OPTIONS, body); } /** * Invoke HTTP OPTIONS method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Class) */ default ResponseHandler options(Class responseType) { return request(HttpMethod.OPTIONS, responseType); } /** * Invoke HTTP OPTIONS method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, TypeReference) */ default ResponseHandler options(TypeReference responseType) { return request(HttpMethod.OPTIONS, responseType); } /** * Invoke HTTP PATCH method for the current request * * @return the response to the request. * @see #request(HttpMethod) */ default Response patch() { return request(HttpMethod.PATCH); } /** * Invoke HTTP PATCH method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawPatch() { return rawRequest(HttpMethod.PATCH); } /** * Invoke HTTP PATCH method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, HttpEntity) */ default ResponseHandler rawPatch(final HttpEntity httpEntity) { return rawRequest(HttpMethod.PATCH, httpEntity); } /** * Invoke HTTP PATCH method for the current request * * @param payload the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, String) */ default ResponseHandler rawPatch(final String payload) { return rawRequest(HttpMethod.PATCH, payload); } /** * The same as {@link #rawPatch(String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the ResponseHandler instance to the request. * @see #rawPatch(String) */ default ResponseHandler rawPatch(final Object body) { return rawRequest(HttpMethod.PATCH, body); } /** * Invoke HTTP PATCH method for the current request * * @param httpEntity the HttpEntity to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, HttpEntity) */ default Response patch(final HttpEntity httpEntity) { return request(HttpMethod.PATCH, httpEntity); } /** * Invoke HTTP PATCH method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, Class) */ default ResponseHandler patch(final HttpEntity httpEntity, Class responseType) { return request(HttpMethod.PATCH, httpEntity, responseType); } /** * Invoke HTTP PATCH method for the current request with the given HttpEntity and response type. * * @param httpEntity the HttpEntity to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, HttpEntity, TypeReference) */ default ResponseHandler patch(final HttpEntity httpEntity, TypeReference responseType) { return request(HttpMethod.PATCH, httpEntity, responseType); } /** * Invoke HTTP PATCH method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, Class) */ default ResponseHandler patch(final String payload, Class responseType) { return request(HttpMethod.PATCH, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, Class)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, Class) */ default ResponseHandler patch(final Object body, Class responseType) { return request(HttpMethod.PATCH, body, responseType); } /** * Invoke HTTP PATCH method for the current request with the given payload and response type. * * @param payload the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, String, TypeReference) */ default ResponseHandler patch(final String payload, TypeReference responseType) { return request(HttpMethod.PATCH, payload, responseType); } /** * The same as {@link #request(HttpMethod, String, TypeReference)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Object, TypeReference) */ default ResponseHandler patch(final Object body, TypeReference responseType) { return request(HttpMethod.PATCH, body, responseType); } /** * Invoke HTTP PATCH method for the current request with the given payload. * * @param payload the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, String) */ default Response patch(final String payload) { return request(HttpMethod.PATCH, payload); } /** * The same as {@link #request(HttpMethod, String)} with serializing body depends on a Content-type into String {@code payload} * * @param body the payload to be sent with the request. * @return the response to the request. * @see #request(HttpMethod, Object) */ default Response patch(final Object body) { return request(HttpMethod.PATCH, body); } /** * Invoke HTTP PATCH method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, Class) */ default ResponseHandler patch(Class responseType) { return request(HttpMethod.PATCH, responseType); } /** * Invoke HTTP PATCH method for the current request and return a ResponseHandler instance. * * @param the response entity type. * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @return the ResponseHandler instance to the request. * @see #request(HttpMethod, TypeReference) */ default ResponseHandler patch(TypeReference responseType) { return request(HttpMethod.PATCH, responseType); } /** * Invoke HTTP TRACE method for the current request * * @return the response to the request. * @see #request(HttpMethod) */ default Response trace() { return request(HttpMethod.TRACE); } /** * Invoke HTTP TRACE method for the current request * * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod) */ default ResponseHandler rawTrace() { return rawRequest(HttpMethod.TRACE); } /** * Invoke HTTP TRACE method for the current request * * @param responseType the Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, HttpEntity) */ default ResponseHandler trace(Class responseType) { return request(HttpMethod.TRACE, responseType); } /** * Invoke HTTP TRACE method for the current request * * @param responseType the representation of a TypeReference Java type the response entity will be converted to. * @param the response entity type. * @return the ResponseHandler instance to the request. * @see #rawRequest(HttpMethod, String) */ default ResponseHandler trace(TypeReference responseType) { return request(HttpMethod.TRACE, responseType); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy