Uses of Interface
org.eclipse.jetty.security.AuthenticationState
Packages that use AuthenticationState
Package
Description
Jetty Jaspi : Java Authentication SPI
Jetty Server : Modular Servlet Integration
Jetty Jaspi : Java Authentication SPI
Jetty Server : Modular Servlet Integration
Jetty Security : Modular Support for Security in Jetty
Jetty Security : Authenticators and Callbacks
- 
Uses of AuthenticationState in org.eclipse.jetty.ee10.security.jaspi
Methods in org.eclipse.jetty.ee10.security.jaspi that return AuthenticationStateModifier and TypeMethodDescriptionJaspiAuthenticator.validateRequest(JaspiMessageInfo messageInfo) JaspiAuthenticator.validateRequest(Request request, Response response, Callback callback) Methods in org.eclipse.jetty.ee10.security.jaspi with parameters of type AuthenticationStateModifier and TypeMethodDescriptionbooleanJaspiAuthenticator.secureResponse(JaspiMessageInfo messageInfo, AuthenticationState validatedUser)  - 
Uses of AuthenticationState in org.eclipse.jetty.ee10.servlet
Methods in org.eclipse.jetty.ee10.servlet that return AuthenticationStateModifier and TypeMethodDescriptionServletApiRequest.getAuthentication()Deprecated, for removal: This API element is subject to removal in a future version.ServletApiRequest.getAuthenticationState() - 
Uses of AuthenticationState in org.eclipse.jetty.ee11.security.jaspi
Methods in org.eclipse.jetty.ee11.security.jaspi that return AuthenticationStateModifier and TypeMethodDescriptionJaspiAuthenticator.validateRequest(JaspiMessageInfo messageInfo) JaspiAuthenticator.validateRequest(Request request, Response response, Callback callback) Methods in org.eclipse.jetty.ee11.security.jaspi with parameters of type AuthenticationStateModifier and TypeMethodDescriptionbooleanJaspiAuthenticator.secureResponse(JaspiMessageInfo messageInfo, AuthenticationState validatedUser)  - 
Uses of AuthenticationState in org.eclipse.jetty.ee11.servlet
Methods in org.eclipse.jetty.ee11.servlet that return AuthenticationState - 
Uses of AuthenticationState in org.eclipse.jetty.security
Subinterfaces of AuthenticationState in org.eclipse.jetty.securityModifier and TypeInterfaceDescriptionstatic interfaceAuthentication is Deferred, either so that credentials can later be passed withAuthenticationState.login(String, String, Request, Response); or that existing credentials on the request may be validated withAuthenticationState.Deferred.authenticate(Request); or an authentication dialog can be advanced withAuthenticationState.Deferred.authenticate(Request, Response, Callback).static interfaceAuthentication Response sent state.static interfaceA successful Authentication with User information.Classes in org.eclipse.jetty.security that implement AuthenticationStateModifier and TypeClassDescriptionstatic classTheSecurityHandlerwill use this to wrap theRequest.Fields in org.eclipse.jetty.security declared as AuthenticationStateModifier and TypeFieldDescriptionstatic final AuthenticationStateAuthenticationState.CHALLENGEAuthentication challenge sent.static final AuthenticationStateAuthenticationState.SEND_FAILUREAuthentication failure sent.static final AuthenticationStateAuthenticationState.SEND_SUCCESSAuthentication success sent.Methods in org.eclipse.jetty.security that return AuthenticationStateModifier and TypeMethodDescriptionAuthenticationState.Deferred.authenticate(Request request, Response response, Callback callback) Authenticate the request using any credentials already associated with the request or challenging if necessary.static AuthenticationStateAuthenticationState.getAuthenticationState(Request request) Get the authentication state of a request.static AuthenticationStateAuthenticationState.getUndeferredAuthenticationState(Request request) Get the authentication state of a request resolving anyAuthenticationState.Deferredauthentication.Authenticator.NoOp.validateRequest(Request request, Response response, Callback callback) Authenticator.validateRequest(Request request, Response response, Callback callback) Attempts to validate the authentication state of the given request.MultiAuthenticator.validateRequest(Request request, Response response, Callback callback) static AuthenticationStateAuthenticationState.writeError(Request request, Response response, Callback callback, int code) Methods in org.eclipse.jetty.security with parameters of type AuthenticationStateModifier and TypeMethodDescriptionprotected booleanSecurityHandler.isAuthorized(Constraint constraint, AuthenticationState authenticationState) default RequestAuthenticator.prepareRequest(Request request, AuthenticationState authenticationState) Called afterAuthenticator.validateRequest(Request, Response, Callback)and before callingRequest.Handler.handle(Request, Response, Callback)of the nested handler.MultiAuthenticator.prepareRequest(Request request, AuthenticationState authenticationState) static voidAuthenticationState.setAuthenticationState(Request request, AuthenticationState authenticationState) Set the authentication state of a request. - 
Uses of AuthenticationState in org.eclipse.jetty.security.authentication
Classes in org.eclipse.jetty.security.authentication that implement AuthenticationStateModifier and TypeClassDescriptionstatic classstatic classThis Authentication represents a just completed authentication, that has sent a response, typically to redirect the client to the original request target..static classBase class for representing a successful authentication state.classWhen 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 AuthenticationStateModifier and TypeMethodDescriptionLoginAuthenticator.LoggedOutAuthentication.authenticate(Request request, Response response, Callback callback) BasicAuthenticator.validateRequest(Request req, Response res, Callback callback) DigestAuthenticator.validateRequest(Request req, Response res, Callback callback) FormAuthenticator.validateRequest(Request request, Response response, Callback callback) SPNEGOAuthenticator.validateRequest(Request req, Response res, Callback callback) SslClientCertAuthenticator.validateRequest(Request req, Response res, Callback callback) Methods in org.eclipse.jetty.security.authentication with parameters of type AuthenticationStateModifier and TypeMethodDescriptionFormAuthenticator.prepareRequest(Request request, AuthenticationState authenticationState)  - 
Uses of AuthenticationState in org.eclipse.jetty.security.openid
Methods in org.eclipse.jetty.security.openid that return AuthenticationStateModifier and TypeMethodDescriptionOpenIdAuthenticator.validateRequest(Request request, Response response, Callback cb) Methods in org.eclipse.jetty.security.openid with parameters of type AuthenticationStateModifier and TypeMethodDescriptionOpenIdAuthenticator.prepareRequest(Request request, AuthenticationState authenticationState)  - 
Uses of AuthenticationState in org.eclipse.jetty.security.siwe
Methods in org.eclipse.jetty.security.siwe that return AuthenticationStateModifier and TypeMethodDescriptionprotected AuthenticationStateEthereumAuthenticator.handleNonceRequest(Request request, Response response, Callback callback) EthereumAuthenticator.validateRequest(Request request, Response response, Callback callback) Methods in org.eclipse.jetty.security.siwe with parameters of type AuthenticationStateModifier and TypeMethodDescriptionEthereumAuthenticator.prepareRequest(Request request, AuthenticationState authenticationState)  
ServletApiRequest.getAuthenticationState()instead.