Uses of Interface
org.eclipse.jetty.server.Authentication
-
Packages that use Authentication Package Description org.eclipse.jetty.security Jetty Security : Modular Support for Security in Jettyorg.eclipse.jetty.security.authentication Jetty Security : Authenticators and Callbacksorg.eclipse.jetty.security.jaspi Jetty Jaspi : Java Authentication SPIorg.eclipse.jetty.security.openid org.eclipse.jetty.server Jetty Server : Core Server API -
-
Uses of Authentication in org.eclipse.jetty.security
Classes in org.eclipse.jetty.security that implement Authentication Modifier and Type Class Description class
AbstractUserAuthentication
AbstractUserAuthentication Base class for representing an authenticated user.class
LoggedOutAuthentication
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
UserAuthentication
Methods in org.eclipse.jetty.security that return Authentication Modifier and Type Method Description Authentication
LoggedOutAuthentication. login(java.lang.String username, java.lang.Object password, javax.servlet.ServletRequest request)
Authentication
AbstractUserAuthentication. logout(javax.servlet.ServletRequest request)
Authentication
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 Authentication Modifier and Type Class Description class
DeferredAuthentication
static class
FormAuthenticator.FormAuthentication
This Authentication represents a just completed Form authentication.class
SessionAuthentication
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 Authentication Modifier and Type Method Description Authentication
DeferredAuthentication. authenticate(javax.servlet.ServletRequest request)
Authentication
DeferredAuthentication. authenticate(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response)
Authentication
DeferredAuthentication. login(java.lang.String username, java.lang.Object password, javax.servlet.ServletRequest request)
Authentication
DeferredAuthentication. logout(javax.servlet.ServletRequest request)
Authentication
BasicAuthenticator. validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)
Authentication
ClientCertAuthenticator. validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)
Authentication
ConfigurableSpnegoAuthenticator. validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)
Authentication
DigestAuthenticator. validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)
Authentication
FormAuthenticator. validateRequest(javax.servlet.ServletRequest req, javax.servlet.ServletResponse res, boolean mandatory)
Authentication
SpnegoAuthenticator. validateRequest(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, boolean mandatory)
Deprecated. -
Uses of Authentication in org.eclipse.jetty.security.jaspi
Methods in org.eclipse.jetty.security.jaspi that return Authentication Modifier and Type Method Description Authentication
JaspiAuthenticator. validateRequest(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, boolean mandatory)
Authentication
JaspiAuthenticator. validateRequest(JaspiMessageInfo messageInfo)
Methods in org.eclipse.jetty.security.jaspi with parameters of type Authentication Modifier and Type Method Description boolean
JaspiAuthenticator. secureResponse(JaspiMessageInfo messageInfo, Authentication validatedUser)
-
Uses of Authentication in org.eclipse.jetty.security.openid
Classes in org.eclipse.jetty.security.openid that implement Authentication Modifier and Type Class Description static class
OpenIdAuthenticator.OpenIdAuthentication
This Authentication represents a just completed OpenId Connect authentication.Methods in org.eclipse.jetty.security.openid that return Authentication Modifier and Type Method Description Authentication
OpenIdAuthenticator. 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.server Modifier and Type Interface Description static interface
Authentication.Challenge
An Authentication Challenge has been sent.static interface
Authentication.Deferred
A deferred authentication with methods to progress the authentication process.static interface
Authentication.Failure
An Authentication Failure has been sent.static interface
Authentication.LoginAuthentication
An authentication that is capable of performing a programmatic login operation.static interface
Authentication.LogoutAuthentication
An authentication that is capable of performing a programmatic logout operation.static interface
Authentication.NonAuthenticated
After a logout, the authentication reverts to a state where it is possible to programmatically log in again.static interface
Authentication.ResponseSent
Authentication Response sent state.static interface
Authentication.SendSuccess
static interface
Authentication.User
A successful Authentication with User information.static interface
Authentication.Wrapped
A wrapped authentication with methods provide the wrapped request/response for use by the applicationFields in org.eclipse.jetty.server declared as Authentication Modifier and Type Field Description static Authentication
Authentication. NOT_CHECKED
Authentication not checkedstatic Authentication
Authentication. SEND_CONTINUE
Authentication challenge sent.static Authentication
Authentication. SEND_FAILURE
Authentication failure sent.static Authentication
Authentication. SEND_SUCCESS
static Authentication
Authentication. UNAUTHENTICATED
Unauthenticated state.Methods in org.eclipse.jetty.server that return Authentication Modifier and Type Method Description Authentication
Authentication.Deferred. authenticate(javax.servlet.ServletRequest request)
Authenticate if possible without sending a challenge.Authentication
Authentication.Deferred. authenticate(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response)
Authenticate and possibly send a challenge.Authentication
Request. getAuthentication()
Get the authentication.Authentication
Authentication.LoginAuthentication. login(java.lang.String username, java.lang.Object password, javax.servlet.ServletRequest request)
Login with the LOGIN authenticatorAuthentication
Authentication.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 Authentication Modifier and Type Method Description void
Request. setAuthentication(Authentication authentication)
Set the authentication.
-