Uses of Class
org.apache.hc.core5.net.URIAuthority
Packages that use URIAuthority
Package
Description
Core HTTP transport component APIs.
Support classes for the classic (blocking) I/O model.
Core HTTP message components, message element parser
and writer APIs and their default implementations.
Support classes for the asynchronous I/O model.
Core network component APIs and utilities.
-
Uses of URIAuthority in org.apache.hc.core5.http
Methods in org.apache.hc.core5.http that return URIAuthorityModifier and TypeMethodDescriptionHttpRequest.getAuthority()
Returns authority of this request message.Methods in org.apache.hc.core5.http with parameters of type URIAuthorityModifier and TypeMethodDescriptionvoid
HttpRequest.setAuthority
(URIAuthority authority) Sets authority of this request message.Constructors in org.apache.hc.core5.http with parameters of type URIAuthority -
Uses of URIAuthority in org.apache.hc.core5.http.io.support
Methods in org.apache.hc.core5.http.io.support with parameters of type URIAuthorityModifier and TypeMethodDescriptionprotected abstract boolean
AbstractHttpServerAuthFilter.authenticate
(T challengeResponse, URIAuthority authority, String requestUri, HttpContext context) Authenticates the client using the authentication token sent by the client as a response to an authentication challenge.protected abstract String
AbstractHttpServerAuthFilter.generateChallenge
(T challengeResponse, URIAuthority authority, String requestUri, HttpContext context) Generates an authentication challenge in case of unsuccessful authentication.ClassicRequestBuilder.setAuthority
(URIAuthority authority) -
Uses of URIAuthority in org.apache.hc.core5.http.message
Fields in org.apache.hc.core5.http.message declared as URIAuthorityMethods in org.apache.hc.core5.http.message that return URIAuthorityModifier and TypeMethodDescriptionBasicHttpRequest.getAuthority()
HttpRequestWrapper.getAuthority()
Methods in org.apache.hc.core5.http.message with parameters of type URIAuthorityModifier and TypeMethodDescriptionvoid
BasicHttpRequest.setAuthority
(URIAuthority authority) void
HttpRequestWrapper.setAuthority
(URIAuthority authority) Constructors in org.apache.hc.core5.http.message with parameters of type URIAuthorityModifierConstructorDescriptionBasicClassicHttpRequest
(String method, String scheme, URIAuthority authority, String path) Creates request message with the given method, host and request path.BasicHttpRequest
(String method, String scheme, URIAuthority authority, String path) Creates request message with the given method, host and request path. -
Uses of URIAuthority in org.apache.hc.core5.http.nio.support
Methods in org.apache.hc.core5.http.nio.support with parameters of type URIAuthorityModifier and TypeMethodDescriptionprotected abstract boolean
AbstractAsyncServerAuthFilter.authenticate
(T challengeResponse, URIAuthority authority, String requestUri, HttpContext context) Authenticates the client using the authentication token sent by the client as a response to an authentication challenge.protected abstract String
AbstractAsyncServerAuthFilter.generateChallenge
(T challengeResponse, URIAuthority authority, String requestUri, HttpContext context) Generates an authentication challenge in case of unsuccessful authentication.AsyncRequestBuilder.setAuthority
(URIAuthority authority) -
Uses of URIAuthority in org.apache.hc.core5.http.support
Fields in org.apache.hc.core5.http.support declared as URIAuthorityMethods in org.apache.hc.core5.http.support that return URIAuthorityMethods in org.apache.hc.core5.http.support with parameters of type URIAuthorityModifier and TypeMethodDescriptionAbstractRequestBuilder.setAuthority
(URIAuthority authority) BasicRequestBuilder.setAuthority
(URIAuthority authority) -
Uses of URIAuthority in org.apache.hc.core5.net
Methods in org.apache.hc.core5.net that return URIAuthorityModifier and TypeMethodDescriptionstatic URIAuthority
Creates aURIAuthority
instance from a string.URIBuilder.getAuthority()
Gets the authority.(package private) static URIAuthority
URIAuthority.parse
(CharSequence s) (package private) static URIAuthority
URIAuthority.parse
(CharSequence s, Tokenizer.Cursor cursor) Methods in org.apache.hc.core5.net with parameters of type URIAuthorityModifier and TypeMethodDescription(package private) static void
URIAuthority.format
(StringBuilder buf, URIAuthority uriAuthority) (package private) static String
URIAuthority.format
(URIAuthority uriAuthority) URIBuilder.setAuthority
(URIAuthority authority) Sets the authority.
HttpHost(String, NamedEndpoint)