Class Authenticator
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 Summary
| Modifier and Type | Class | Description |
|---|---|---|
static class |
Authenticator.Failure |
Indicates an authentication failure. |
static class |
Authenticator.Result |
Base class for return type from authenticate(HttpExchange) method. |
static class |
Authenticator.Retry |
Indicates an authentication must be retried. |
static class |
Authenticator.Success |
Indicates an authentication has succeeded and the authenticated user principal can be acquired by calling Authenticator.Success.getPrincipal(). |
Constructor Summary
| Modifier | Constructor | Description |
|---|---|---|
protected |
Constructor for subclasses to call. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
abstract Authenticator.Result |
authenticate |
Called to authenticate each incoming request. |
Constructor Details
Authenticator
protected Authenticator()
Constructor for subclasses to call.
Method Details
authenticate
public abstract Authenticator.Result authenticate(HttpExchange exch)
Called to authenticate each incoming request. The implementation must return a
Authenticator.Failure, Authenticator.Success or Authenticator.Retry object 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- theHttpExchangeupon which authenticate is called - Returns:
- the result
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.httpserver/com/sun/net/httpserver/Authenticator.html