Interface AuthenticationFeedbackHandler

    • Method Detail

      • authenticationSucceeded

        boolean authenticationSucceeded​(HttpServletRequest request,
                                        HttpServletResponse response,
                                        AuthenticationInfo authInfo)
        Called if authentication succeeded with the credentials provided in the authInfo map.

        This method is called after successful login and impersonation handling immediately before continuing with the request. The handler may choose to send its own response or to just set some response header (e.g. adding a Cookie) and return appropriately.

        Parameters:
        request - The current request
        response - The current response
        authInfo - The AuthenticationInfo object used to authenticate the request.
        Returns:
        true if the handler sent back a response to the client and request processing should be terminated at this point. If false is returned, the request proceeds as authenticated.