Uses of Interface
org.miaixz.bus.http.secure.Authenticator
Packages that use Authenticator
Package
Description
An HTTP client for Java applications.
Provides a simplified, fluent API implementation (Httpx) for making HTTP requests, building on the core HTTP client
components.
Provides a fluent, builder-based API (Httpz) for making HTTP requests, simplifying interactions with the core
Httpd client.Provides classes for managing security-related aspects of HTTP, including TLS/SSL configuration, authentication, and
certificate pinning.
-
Uses of Authenticator in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return AuthenticatorModifier and TypeMethodDescriptionHttpd.authenticator()Returns the authenticator for handling challenges from origin servers.Address.proxyAuthenticator()Returns the authenticator for proxy servers.Httpd.proxyAuthenticator()Returns the authenticator for handling challenges from proxy servers.Methods in org.miaixz.bus.http with parameters of type AuthenticatorModifier and TypeMethodDescriptionHttpd.Builder.authenticator(Authenticator authenticator) Sets the authenticator used to respond to challenges from origin servers.Httpd.Builder.proxyAuthenticator(Authenticator proxyAuthenticator) Sets the authenticator used to respond to challenges from proxy servers.Constructors in org.miaixz.bus.http with parameters of type AuthenticatorModifierConstructorDescriptionAddress(String uriHost, int uriPort, DnsX dns, SocketFactory socketFactory, SSLSocketFactory sslSocketFactory, HostnameVerifier hostnameVerifier, CertificatePinner certificatePinner, Authenticator proxyAuthenticator, Proxy proxy, List<org.miaixz.bus.core.net.Protocol> protocols, List<ConnectionSuite> connectionSuites, ProxySelector proxySelector) Constructs a new Address. -
Uses of Authenticator in org.miaixz.bus.http.plugin.httpx
Methods in org.miaixz.bus.http.plugin.httpx that return AuthenticatorModifier and TypeMethodDescriptionHttpProxy.authenticator()Creates anAuthenticatorfor this proxy configuration. -
Uses of Authenticator in org.miaixz.bus.http.plugin.httpz
Methods in org.miaixz.bus.http.plugin.httpz with parameters of type AuthenticatorModifier and TypeMethodDescriptionHttpBuilder.authenticator(Authenticator authenticator) Sets the authenticator used to respond to challenges from origin servers.HttpBuilder.proxyAuthenticator(Authenticator proxyAuthenticator) Sets the authenticator used to respond to challenges from proxy servers. -
Uses of Authenticator in org.miaixz.bus.http.secure
Classes in org.miaixz.bus.http.secure that implement AuthenticatorModifier and TypeClassDescriptionclassAn authenticator that bridges Httpd's authentication mechanism with Java's built-inAuthenticator.Fields in org.miaixz.bus.http.secure declared as AuthenticatorModifier and TypeFieldDescriptionstatic final AuthenticatorAuthenticator.NONEAn authenticator that does not attempt to authenticate and always returns null.