Uses of Class
java.net.Authenticator
Packages that use Authenticator
Package
Description
Provides the classes for implementing networking applications.
HTTP Client and WebSocket APIs
-
Uses of Authenticator in java.net
Methods in java.net that return AuthenticatorModifier and TypeMethodDescriptionstatic Authenticator
Authenticator.getDefault()
Gets the default authenticator.Methods in java.net with parameters of type AuthenticatorModifier and TypeMethodDescriptionstatic PasswordAuthentication
Authenticator.requestPasswordAuthentication
(Authenticator authenticator, String host, InetAddress addr, int port, String protocol, String prompt, String scheme, URL url, Authenticator.RequestorType reqType) Ask the givenauthenticator
for a password.void
HttpURLConnection.setAuthenticator
(Authenticator auth) Supplies anAuthenticator
to be used when authentication is requested through the HTTP protocol for thisHttpURLConnection
.static void
Authenticator.setDefault
(Authenticator a) Sets the authenticator that will be used by the networking code when a proxy or an HTTP server asks for authentication. -
Uses of Authenticator in java.net.http
Methods in java.net.http that return types with arguments of type AuthenticatorModifier and TypeMethodDescriptionabstract Optional<Authenticator>
HttpClient.authenticator()
Returns anOptional
containing theAuthenticator
set on this client.Methods in java.net.http with parameters of type AuthenticatorModifier and TypeMethodDescriptionHttpClient.Builder.authenticator
(Authenticator authenticator) Sets an authenticator to use for HTTP authentication.