AuthenticationStatus |
HttpMessageContext.doNothing() |
Instructs the container to "do nothing".
|
AuthenticationStatus |
HttpMessageContextWrapper.doNothing() |
|
AuthenticationStatus |
HttpMessageContext.forward(String path) |
Forwards to another resource (Jakarta Servlet, Jakarta Server Pages file, or HTML file) on the server.
|
AuthenticationStatus |
HttpMessageContextWrapper.forward(String path) |
|
AuthenticationStatus |
HttpMessageContext.notifyContainerAboutLogin(CredentialValidationResult result) |
Convenience method intended to pass the CredentialValidationResult result of an
identity store directly on to the container.
|
AuthenticationStatus |
HttpMessageContext.notifyContainerAboutLogin(String callername,
Set<String> groups) |
|
AuthenticationStatus |
HttpMessageContext.notifyContainerAboutLogin(Principal principal,
Set<String> groups) |
|
AuthenticationStatus |
HttpMessageContextWrapper.notifyContainerAboutLogin(CredentialValidationResult result) |
|
AuthenticationStatus |
HttpMessageContextWrapper.notifyContainerAboutLogin(String username,
Set<String> roles) |
|
AuthenticationStatus |
HttpMessageContextWrapper.notifyContainerAboutLogin(Principal principal,
Set<String> roles) |
|
AuthenticationStatus |
HttpMessageContext.redirect(String location) |
Sets the response status to SC_FOUND 302 (Found)
|
AuthenticationStatus |
HttpMessageContextWrapper.redirect(String location) |
|
AuthenticationStatus |
HttpMessageContext.responseNotFound() |
Sets the response status to 404 (not found).
|
AuthenticationStatus |
HttpMessageContextWrapper.responseNotFound() |
|
AuthenticationStatus |
HttpMessageContext.responseUnauthorized() |
Sets the response status to 401 (unauthorized).
|
AuthenticationStatus |
HttpMessageContextWrapper.responseUnauthorized() |
|
default AuthenticationStatus |
HttpAuthenticationMechanism.secureResponse(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext) |
Secure the response, optionally.
|
AuthenticationStatus |
HttpAuthenticationMechanismWrapper.secureResponse(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext) |
|
AuthenticationStatus |
HttpAuthenticationMechanism.validateRequest(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext) |
Authenticate an HTTP request.
|
AuthenticationStatus |
HttpAuthenticationMechanismWrapper.validateRequest(HttpServletRequest request,
HttpServletResponse response,
HttpMessageContext httpMessageContext) |
|