Class HTTP2.Builder
- Enclosing class:
HTTP2
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSets the "Accept" header to specify the media types that the client can process.Configures the builder to accept any media type by setting the "Accept" header to "Sets the "Accept" header of the HTTP request to "application/json".Configures the builder to accept responses with a MIME type of "application/xml".authenticator
(Authenticator authenticator) Configures the HTTP client with a custom authenticator.bearerToken
(String token) Sets the Authorization header with a Bearer token.Sets the body content for the request and returns the builder instance for chaining.contentType
(String contentType) Sets the "Content-Type" header for the request.Sets the Content-Type header to "application/x-www-form-urlencoded; charset=UTF-8".Sets the Content-Type header to "application/json" and the Accept header to "application/json; charset=UTF-8".Sets the "Content-Type" header to "application/xml" and the "Accept" header to "application/xml; charset=UTF-8" for the current request.Retrieves or initializes theHttpClient.Builder
instance for configuring and buildingHttpClient
objects.Adds a header to the request being built.Sets a collection of headers for the request by iterating over the provided map and adding each key-value pair as a header.json()
Retrieves and converts the response content to a JSON object.localAddress
(InetAddress address) Sets the local address for the HTTP client.proxy
(ProxySelector proxy) Configures the HTTP client to use the specifiedProxySelector
for proxy settings.requestCustomizer
(Consumer<HttpRequest.Builder> requestCustomizer) Adds a customizer for the HTTP request being built.response()
Retrieves the HTTP response as anHttpResponse
containing theInputStream
.sslContext
(SSLContext sslContext) Configures the SSLContext to be used by the HTTP client.sslParameters
(SSLParameters sslParameters) Configures the SSL parameters to be used for HTTPS connections in the request.int
Retrieves the HTTP status code from the response object.stream()
Retrieves the InputStream representation of the response generated by the associated HTTP2 call.Asynchronously retrieves the HTTP response body as an InputStream.string()
Retrieves and converts the response content stream into a string representation.Asynchronously retrieves the response body as a string.Sets the timeout duration for the HTTP request.Sets the URL for the HTTP request.xml()
Retrieves and converts the response content, set to an XML content type, into an XML object.xmlAsync()
Asynchronously retrieves the response and parses it as an XML object.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
url
Sets the URL for the HTTP request.- Parameters:
url
- the URL to be set for the request- Returns:
- the updated builder instance
-
authenticator
Configures the HTTP client with a custom authenticator.- Parameters:
authenticator
- theAuthenticator
instance to handle authentication for requests- Returns:
- the updated
Builder
instance for method chaining
-
requestCustomizer
Adds a customizer for the HTTP request being built. This method allows chaining multiple customizers by combining them into a composite customizer if needed.- Parameters:
requestCustomizer
- aConsumer
implementation that applies customizations to anHttpRequest.Builder
instance.- Returns:
- the
Builder
instance, enabling method chaining.
-
body
Sets the body content for the request and returns the builder instance for chaining.- Parameters:
body
- the body content to be included in the request- Returns:
- the Builder instance for method chaining
-
timeout
Sets the timeout duration for the HTTP request.- Parameters:
timeout
- the timeout duration to be applied to the HTTP request- Returns:
- the Builder instance for method chaining
-
header
Adds a header to the request being built. If the headers map is null, it initializes the map and adds the key-value pair. Otherwise, it simply adds or updates the key-value pair in the existing headers map.- Parameters:
key
- the header namevalue
- the header value- Returns:
- the current Builder instance for method chaining
-
headers
Sets a collection of headers for the request by iterating over the provided map and adding each key-value pair as a header.- Parameters:
headers
- a map containing the headers to be added, where the keys are the header names and the values are the corresponding header values- Returns:
- the current Builder instance for method chaining
-
bearerToken
Sets the Authorization header with a Bearer token.- Parameters:
token
- the Bearer token to be used in the Authorization header- Returns:
- the Builder instance with the updated Authorization header
-
contentType
Sets the "Content-Type" header for the request.- Parameters:
contentType
- the value of the "Content-Type" header to be set- Returns:
- the current instance of the Builder for method chaining
-
contentTypeXML
Sets the "Content-Type" header to "application/xml" and the "Accept" header to "application/xml; charset=UTF-8" for the current request.- Returns:
- this builder instance with updated headers, allowing method chaining
-
contentTypeJSON
Sets the Content-Type header to "application/json" and the Accept header to "application/json; charset=UTF-8".- Returns:
- the updated Builder instance for method chaining
-
contentTypeForm
Sets the Content-Type header to "application/x-www-form-urlencoded; charset=UTF-8".- Returns:
- the Builder instance with the updated Content-Type header.
-
accept
Sets the "Accept" header to specify the media types that the client can process.- Parameters:
accept
- the value of the "Accept" header, defining the desired media types.- Returns:
- the current Builder instance for method chaining.
-
acceptXML
Configures the builder to accept responses with a MIME type of "application/xml".- Returns:
- the updated Builder instance configured to accept "application/xml" responses.
-
acceptJSON
Sets the "Accept" header of the HTTP request to "application/json".- Returns:
- the updated Builder instance
-
acceptAny
Configures the builder to accept any media type by setting the "Accept" header to " -
sslContext
Configures the SSLContext to be used by the HTTP client.- Parameters:
sslContext
- the SSLContext instance to be used for secure HTTPS connections. If null is passed it will be ignored.- Returns:
- the current Builder instance for method chaining
-
sslParameters
Configures the SSL parameters to be used for HTTPS connections in the request.- Parameters:
sslParameters
- theSSLParameters
instance to configure SSL settings If null is passed it will be ignored.- Returns:
- the updated
Builder
instance for method chaining
-
proxy
Configures the HTTP client to use the specifiedProxySelector
for proxy settings. The proxy selector determines the proxy to use for a given HTTP request.- Parameters:
proxy
- theProxySelector
instance to configure proxy settings for the HTTP client If null is passed it will be ignored.- Returns:
- the current
Builder
instance for method chaining
-
localAddress
Sets the local address for the HTTP client. This is used to specify the network interface from which the connection will be made.- Parameters:
address
- theInetAddress
representing the local address or network interface to bind to. If null is passed it will be ignored.- Returns:
- the updated
Builder
instance for method chaining.
-
response
Retrieves the HTTP response as anHttpResponse
containing theInputStream
.Note: If you invoke this method before using any of the retrieval methods such as
string()
,xml()
,json()
or its async cousins, the result will be null.Warning: The
InputStream
instance of this is not useful because it is already fully read by the time this is available. However, the response can be used to check other details of the response.- Returns:
- the HTTP response that wraps an
InputStream
, providing the body of the HTTP response.
-
statusCode
public int statusCode()Retrieves the HTTP status code from the response object. If the response is null, it returns -1.Note: If you invoke this method before using any of the retrieval methods such as
string()
,xml()
,json()
or its async cousins, the result will be -1.- Returns:
- the HTTP status code of the response, or -1 if the response is null
-
string
-
stringAsync
Asynchronously retrieves the response body as a string.- Returns:
- A CompletableFuture containing the response body as a String. The CompletableFuture can be completed normally with the response body or exceptionally if an error occurs.
-
stream
Retrieves the InputStream representation of the response generated by the associated HTTP2 call. In the event of an exception during the execution of the HTTP2 stream, this method returns null.- Returns:
- an InputStream containing the HTTP2 response body, or null if an exception occurs
-
xml
Retrieves and converts the response content, set to an XML content type, into an XML object.- Returns:
- an XML object representation of the response content
-
streamAsync
Asynchronously retrieves the HTTP response body as an InputStream.- Returns:
- a CompletableFuture representing the asynchronous computation of the HTTP response body streamed as an InputStream.
-
xmlAsync
Asynchronously retrieves the response and parses it as an XML object. This method sets the Content-Type of the request to application/xml and invokes the XML parsing logic.- Returns:
- a CompletableFuture that completes with the parsed XML object representing the server's response, or completes exceptionally if an error occurs during the request or parsing.
-
json
Retrieves and converts the response content to a JSON object.- Returns:
- a JSON object representing the parsed response content
-
getException
-
getClientBuilder
Retrieves or initializes theHttpClient.Builder
instance for configuring and buildingHttpClient
objects. If thehttpClientBuilder
is null, this method initializes it.Note: If this method is invoked a custom client builder is created that you can manipulate directly. It will not affect any other connections of
HTTP2
.Warning: Make sure that you don't call the
HttpClient.Builder.build()
method on the instance returned by this. It will be automatically called internally when required.- Returns:
- the
HttpClient.Builder
instance, either existing or newly constructed.
-