Uses of Interface
org.eclipse.jetty.server.Authentication
-
Packages that use Authentication Package Description org.eclipse.jetty.server Jetty Server : Core Server API -
-
Uses of Authentication in org.eclipse.jetty.server
Subinterfaces of Authentication in org.eclipse.jetty.server Modifier and Type Interface Description static interfaceAuthentication.ChallengeAn Authentication Challenge has been sent.static interfaceAuthentication.DeferredA deferred authentication with methods to progress the authentication process.static interfaceAuthentication.FailureAn Authentication Failure has been sent.static interfaceAuthentication.LoginAuthenticationAn authentication that is capable of performing a programmatic login operation.static interfaceAuthentication.LogoutAuthenticationAn authentication that is capable of performing a programmatic logout operation.static interfaceAuthentication.NonAuthenticatedAfter a logout, the authentication reverts to a state where it is possible to programmatically log in again.static interfaceAuthentication.ResponseSentAuthentication Response sent state.static interfaceAuthentication.SendSuccessstatic interfaceAuthentication.UserA successful Authentication with User information.static interfaceAuthentication.WrappedA 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 AuthenticationAuthentication. NOT_CHECKEDAuthentication not checkedstatic AuthenticationAuthentication. SEND_CONTINUEAuthentication challenge sent.static AuthenticationAuthentication. SEND_FAILUREAuthentication failure sent.static AuthenticationAuthentication. SEND_SUCCESSstatic AuthenticationAuthentication. UNAUTHENTICATEDUnauthenticated state.Methods in org.eclipse.jetty.server that return Authentication Modifier and Type Method Description AuthenticationAuthentication.Deferred. authenticate(jakarta.servlet.ServletRequest request)Authenticate if possible without sending a challenge.AuthenticationAuthentication.Deferred. authenticate(jakarta.servlet.ServletRequest request, jakarta.servlet.ServletResponse response)Authenticate and possibly send a challenge.AuthenticationRequest. getAuthentication()Get the authentication.AuthenticationAuthentication.LoginAuthentication. login(java.lang.String username, java.lang.Object password, jakarta.servlet.ServletRequest request)Login with the LOGIN authenticatorAuthenticationAuthentication.LogoutAuthentication. logout(jakarta.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 voidRequest. setAuthentication(Authentication authentication)Set the authentication.
-