Authenticator.RequestorType

  • Authenticator.RequestorType is an enum defining the type of entity requesting authentication, such as a proxy or server.

  • It inherits methods from java.lang.Enum, java.lang.Object, and java.lang.Comparable for object comparison and manipulation.

  • The enum includes two values: PROXY representing a proxy server request and SERVER for an origin server request.

public static final enum Authenticator.RequestorType extends Enum<Authenticator.RequestorType>

The type of the entity requesting authentication.

Inherited Method Summary

Enum Values

public static final Authenticator.RequestorType PROXY

Entity requesting authentication is a HTTP proxy server.

public static final Authenticator.RequestorType SERVER

Entity requesting authentication is a HTTP origin server.