BasicAuthenticator
public abstract class Authenticator extends Object
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() . |
Modifier | Constructor | Description |
---|---|---|
protected |
Constructor for subclasses to call. |
Modifier and Type | Method | Description |
---|---|---|
abstract Authenticator.Result |
authenticate |
Called to authenticate each incoming request. |
protected Authenticator()
public abstract Authenticator.Result authenticate(HttpExchange exch)
Authenticator.Failure
, Authenticator.Success
or Authenticator.Retry
object as appropriate: Failure
means the authentication has completed, but has failed due to invalid credentials. Success
means that the authentication has succeeded, and a Principal
object representing the user can be retrieved by calling Authenticator.Success.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. exch
- the HttpExchange
upon which authenticate is called
© 1993, 2023, 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/21/docs/api/jdk.httpserver/com/sun/net/httpserver/Authenticator.html