Uses of Enum Class
java.net.Authenticator.RequestorType
Packages that use Authenticator.RequestorType
-
Uses of Authenticator.RequestorType in java.net
Subclasses with type arguments of type Authenticator.RequestorType in java.netModifier and TypeClassDescriptionstatic enum
The type of the entity requesting authentication.Methods in java.net that return Authenticator.RequestorTypeModifier and TypeMethodDescriptionprotected Authenticator.RequestorType
Authenticator.getRequestorType()
Returns whether the requestor is a Proxy or a Server.static Authenticator.RequestorType
Returns the enum constant of this class with the specified name.static Authenticator.RequestorType[]
Authenticator.RequestorType.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in java.net with parameters of type Authenticator.RequestorTypeModifier and TypeMethodDescriptionstatic PasswordAuthentication
Authenticator.requestPasswordAuthentication
(String host, InetAddress addr, int port, String protocol, String prompt, String scheme, URL url, Authenticator.RequestorType reqType) Ask the authenticator that has been registered with the system for a password.static 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.Authenticator.requestPasswordAuthenticationInstance
(String host, InetAddress addr, int port, String protocol, String prompt, String scheme, URL url, Authenticator.RequestorType reqType) Ask this authenticator for a password.