java.lang.Object
com.sun.net.httpserver.Authenticator
- Direct Known Subclasses:
- BasicAuthenticator
public abstract class Authenticator extends Object
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.
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classAuthenticator.FailureIndicates an authentication failure.static classAuthenticator.ResultBase class for return type from authenticate() methodstatic classAuthenticator.RetryIndicates an authentication must be retried.static classAuthenticator.SuccessIndicates an authentication has succeeded and the authenticated user principal can be acquired by calling getPrincipal().
- 
Constructor SummaryConstructors Constructor Description Authenticator()
- 
Method SummaryModifier and Type Method Description abstract Authenticator.Resultauthenticate(HttpExchange exch)called to authenticate each incoming request.
- 
Constructor Details- 
Authenticatorpublic Authenticator()
 
- 
- 
Method Details- 
authenticatecalled to authenticate each incoming request. The implementation must return a Failure, Success or Retry object as appropriate :-Failure means the authentication has completed, but has failed due to invalid credentials. Sucess means that the authentication has succeeded, and a Principal object representing the user can be retrieved by calling Sucess.getPrincipal() . Retry means that another HTTP exchange is required. Any response headers needing to be sent back to the client are set in the given HttpExchange. The response code to be returned must be provided in the Retry object. Retry may occur multiple times. 
 
-