Uses of Class
com.storedobject.common.HTTP2.Builder
Packages that use HTTP2.Builder
-
Uses of HTTP2.Builder in com.storedobject.common
Methods in com.storedobject.common that return HTTP2.BuilderModifier and TypeMethodDescriptionSets the "Accept" header to specify the media types that the client can process.HTTP2.Builder.acceptAny()
Configures the builder to accept any media type by setting the "Accept" header to "HTTP2.Builder.acceptJSON()
Sets the "Accept" header of the HTTP request to "application/json".HTTP2.Builder.acceptXML()
Configures the builder to accept responses with a MIME type of "application/xml".HTTP2.Builder.authenticator
(Authenticator authenticator) Configures the HTTP client with a custom authenticator.HTTP2.Builder.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.static HTTP2.Builder
HTTP2.builder()
Creates a new instance of theBuilder
class, which provides methods to configure and build an HTTP request.static HTTP2.Builder
Creates a newBuilder
instance initialized with the specified URL.HTTP2.Builder.contentType
(String contentType) Sets the "Content-Type" header for the request.HTTP2.Builder.contentTypeForm()
Sets the Content-Type header to "application/x-www-form-urlencoded; charset=UTF-8".HTTP2.Builder.contentTypeJSON()
Sets the Content-Type header to "application/json" and the Accept header to "application/json; charset=UTF-8".HTTP2.Builder.contentTypeXML()
Sets the "Content-Type" header to "application/xml" and the "Accept" header to "application/xml; charset=UTF-8" for the current request.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.HTTP2.Builder.localAddress
(InetAddress address) Sets the local address for the HTTP client.HTTP2.Builder.proxy
(ProxySelector proxy) Configures the HTTP client to use the specifiedProxySelector
for proxy settings.HTTP2.Builder.requestCustomizer
(Consumer<HttpRequest.Builder> requestCustomizer) Adds a customizer for the HTTP request being built.HTTP2.Builder.sslContext
(SSLContext sslContext) Configures the SSLContext to be used by the HTTP client.HTTP2.Builder.sslParameters
(SSLParameters sslParameters) Configures the SSL parameters to be used for HTTPS connections in the request.Sets the timeout duration for the HTTP request.Sets the URL for the HTTP request.