Uses of Interface
org.eclipse.jetty.ee8.nested.Authentication
Packages that use Authentication
-
Uses of Authentication in org.eclipse.jetty.ee8.nested
Subinterfaces of Authentication in org.eclipse.jetty.ee8.nestedModifier and TypeInterfaceDescriptionstatic interfaceAn Authentication Challenge has been sent.static interfaceA deferred authentication with methods to progress the authentication process.static interfaceAn Authentication Failure has been sent.static interfaceAn authentication that is capable of performing a programmatic login operation.static interfaceAn authentication that is capable of performing a programmatic logout operation.static interfaceAfter a logout, the authentication reverts to a state where it is possible to programmatically log in again.static interfaceAuthentication Response sent state.static interfacestatic interfaceA successful Authentication with User information.static interfaceA wrapped authentication with methods provide the wrapped request/response for use by the applicationFields in org.eclipse.jetty.ee8.nested declared as AuthenticationModifier and TypeFieldDescriptionstatic final AuthenticationAuthentication.NOT_CHECKEDAuthentication not checkedstatic final AuthenticationAuthentication.SEND_CONTINUEAuthentication challenge sent.static final AuthenticationAuthentication.SEND_FAILUREAuthentication failure sent.static final AuthenticationAuthentication.SEND_SUCCESSstatic final AuthenticationAuthentication.UNAUTHENTICATEDUnauthenticated state.Methods in org.eclipse.jetty.ee8.nested 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.ee8.nested with parameters of type AuthenticationModifier and TypeMethodDescriptionvoidRequest.setAuthentication(Authentication authentication) Set the authentication.