java.lang.Object
com.sun.net.httpserver.Authenticator
- Direct Known Subclasses:
- BasicAuthenticator
Authenticator represents an implementation of an HTTP authentication
 mechanism. Sub-classes provide implementations of specific mechanisms
 such as Digest or Basic auth. Instances are invoked to provide verification
 of the authentication information provided in all incoming requests.
 Note. This implies that any caching of credentials or other authentication
 information must be done outside of this class.
- Since:
- 1.6
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classIndicates an authentication failure.static classBase class for return type fromauthenticate(HttpExchange)method.static classIndicates an authentication must be retried.static classIndicates an authentication has succeeded and the authenticated user principal can be acquired by callingAuthenticator.Success.getPrincipal().
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract Authenticator.Resultauthenticate(HttpExchange exch) Called to authenticate each incoming request.
- 
Constructor Details- 
Authenticatorprotected Authenticator()Constructor for subclasses to call.
 
- 
- 
Method Details- 
authenticateCalled to authenticate each incoming request. The implementation must return aAuthenticator.Failure,Authenticator.SuccessorAuthenticator.Retryobject as appropriate:-  Failuremeans the authentication has completed, but has failed due to invalid credentials.
-  Successmeans that the authentication has succeeded, and aPrincipalobject representing the user can be retrieved by callingAuthenticator.Success.getPrincipal().
-  Retrymeans that another HTTP exchange is required. Any response headers needing to be sent back to the client are set in the givenHttpExchange. The response code to be returned must be provided in theRetryobject.Retrymay occur multiple times.
 - Parameters:
- exch- the- HttpExchangeupon which authenticate is called
- Returns:
- the result
 
-  
 
-