Uses of Interface
org.eclipse.jetty.server.Authentication
Packages that use Authentication
Package
Description
Jetty Security : Modular Support for Security in Jetty
Jetty Security : Authenticators and Callbacks
Jetty Jaspi : Java Authentication SPI
Jetty Server : Core Server API
-
Uses of Authentication in org.eclipse.jetty.security
Classes in org.eclipse.jetty.security that implement AuthenticationModifier and TypeClassDescriptionclass
AbstractUserAuthentication Base class for representing an authenticated user.class
LoggedOutAuthentication An Authentication indicating that a user has been previously, but is not currently logged in, but may be capable of logging in after a call to Request.login(String,String)class
Methods in org.eclipse.jetty.security that return AuthenticationModifier and TypeMethodDescriptionLoggedOutAuthentication.login
(String username, Object password, javax.servlet.ServletRequest request) AbstractUserAuthentication.logout
(javax.servlet.ServletRequest request) Authenticator.validateRequest
(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, boolean mandatory) Validate a request -
Uses of Authentication in org.eclipse.jetty.security.authentication
Classes in org.eclipse.jetty.security.authentication that implement AuthenticationModifier and TypeClassDescriptionclass
static class
This Authentication represents a just completed Form authentication.class
SessionAuthentication When a user has been successfully authenticated with some types of Authenticator, the Authenticator stashes a SessionAuthentication into an HttpSession to remember that the user is authenticated.Methods in org.eclipse.jetty.security.authentication that return AuthenticationModifier and TypeMethodDescriptionDeferredAuthentication.authenticate
(javax.servlet.ServletRequest request) DeferredAuthentication.authenticate
(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response) DeferredAuthentication.login
(String username, Object password, javax.servlet.ServletRequest request) DeferredAuthentication.logout
(javax.servlet.ServletRequest request) BasicAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) ClientCertAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) Deprecated.ConfigurableSpnegoAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) DigestAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) FormAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) SslClientCertAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) -
Uses of Authentication in org.eclipse.jetty.security.jaspi
Methods in org.eclipse.jetty.security.jaspi that return AuthenticationModifier and TypeMethodDescriptionJaspiAuthenticator.validateRequest
(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, boolean mandatory) JaspiAuthenticator.validateRequest
(JaspiMessageInfo messageInfo) Methods in org.eclipse.jetty.security.jaspi with parameters of type AuthenticationModifier and TypeMethodDescriptionboolean
JaspiAuthenticator.secureResponse
(JaspiMessageInfo messageInfo, Authentication validatedUser) -
Uses of Authentication in org.eclipse.jetty.security.openid
Classes in org.eclipse.jetty.security.openid that implement AuthenticationModifier and TypeClassDescriptionstatic class
This Authentication represents a just completed OpenId Connect authentication.Methods in org.eclipse.jetty.security.openid that return AuthenticationModifier and TypeMethodDescriptionOpenIdAuthenticator.validateRequest
(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory) -
Uses of Authentication in org.eclipse.jetty.server
Subinterfaces of Authentication in org.eclipse.jetty.serverModifier and TypeInterfaceDescriptionstatic interface
An Authentication Challenge has been sent.static interface
A deferred authentication with methods to progress the authentication process.static interface
An Authentication Failure has been sent.static interface
An authentication that is capable of performing a programmatic login operation.static interface
An authentication that is capable of performing a programmatic logout operation.static interface
After a logout, the authentication reverts to a state where it is possible to programmatically log in again.static interface
Authentication Response sent state.static interface
static interface
A successful Authentication with User information.static interface
A wrapped authentication with methods provide the wrapped request/response for use by the applicationFields in org.eclipse.jetty.server declared as AuthenticationModifier and TypeFieldDescriptionstatic final Authentication
Authentication.NOT_CHECKED
Authentication not checkedstatic final Authentication
Authentication.SEND_CONTINUE
Authentication challenge sent.static final Authentication
Authentication.SEND_FAILURE
Authentication failure sent.static final Authentication
Authentication.SEND_SUCCESS
static final Authentication
Authentication.UNAUTHENTICATED
Unauthenticated state.Methods in org.eclipse.jetty.server that return AuthenticationModifier and TypeMethodDescriptionAuthentication.Deferred.authenticate
(javax.servlet.ServletRequest request) Authenticate if possible without sending a challenge.Authentication.Deferred.authenticate
(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response) Authenticate and possibly send a challenge.Request.getAuthentication()
Get the authentication.Authentication.LoginAuthentication.login
(String username, Object password, javax.servlet.ServletRequest request) Login with the LOGIN authenticatorAuthentication.LogoutAuthentication.logout
(javax.servlet.ServletRequest request) Remove any user information that may be present in the request such that a call to getUserPrincipal/getRemoteUser will return null.Methods in org.eclipse.jetty.server with parameters of type AuthenticationModifier and TypeMethodDescriptionvoid
Request.setAuthentication
(Authentication authentication) Set the authentication.