Package org.eclipse.jetty.server
Interface Authentication
- 
- All Known Subinterfaces:
 Authentication.Challenge,Authentication.Deferred,Authentication.Failure,Authentication.LoginAuthentication,Authentication.LogoutAuthentication,Authentication.NonAuthenticated,Authentication.ResponseSent,Authentication.SendSuccess,Authentication.User,Authentication.Wrapped
- All Known Implementing Classes:
 AbstractUserAuthentication,LoggedOutAuthentication,UserAuthentication
@Deprecated(since="2021-05-27") public interface AuthenticationDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.The Authentication state of a request.The Authentication state can be one of several sub-types that reflects where the request is in the many different authentication cycles. Authentication might not yet be checked or it might be checked and failed, checked and deferred or succeeded.
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceAuthentication.ChallengeDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.DeferredDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static classAuthentication.FailedDeprecated.static interfaceAuthentication.FailureDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.LoginAuthenticationDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.LogoutAuthenticationDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.NonAuthenticatedDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.ResponseSentDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.SendSuccessDeprecated.static interfaceAuthentication.UserDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.static interfaceAuthentication.WrappedDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported. 
- 
Field Summary
Fields Modifier and Type Field Description static AuthenticationNOT_CHECKEDDeprecated.Authentication not checkedstatic AuthenticationSEND_CONTINUEDeprecated.Authentication challenge sent.static AuthenticationSEND_FAILUREDeprecated.Authentication failure sent.static AuthenticationSEND_SUCCESSDeprecated.static AuthenticationUNAUTHENTICATEDDeprecated.Unauthenticated state. 
 - 
 
- 
- 
Field Detail
- 
UNAUTHENTICATED
static final Authentication UNAUTHENTICATED
Deprecated.Unauthenticated state.This convenience instance is for non mandatory authentication where credentials have been presented and checked, but failed authentication.
 
- 
NOT_CHECKED
static final Authentication NOT_CHECKED
Deprecated.Authentication not checkedThis convenience instance us for non mandatory authentication when no credentials are present to be checked.
 
- 
SEND_CONTINUE
static final Authentication SEND_CONTINUE
Deprecated.Authentication challenge sent.This convenience instance is for when an authentication challenge has been sent.
 
- 
SEND_FAILURE
static final Authentication SEND_FAILURE
Deprecated.Authentication failure sent.This convenience instance is for when an authentication failure has been sent.
 
- 
SEND_SUCCESS
static final Authentication SEND_SUCCESS
Deprecated. 
 - 
 
 -