Uses of Interface
io.inverno.mod.security.http.login.LoginFailureHandler
Packages that use LoginFailureHandler
-
Uses of LoginFailureHandler in io.inverno.mod.security.http.form
Classes in io.inverno.mod.security.http.form that implement LoginFailureHandlerModifier and TypeClassDescriptionclassRedirectLoginFailureHandler<A extends io.inverno.mod.http.base.ExchangeContext,B extends Exchange<A>> A login failure handler implementation that redirects the client (302) after a failed login authentication. -
Uses of LoginFailureHandler in io.inverno.mod.security.http.login
Methods in io.inverno.mod.security.http.login that return LoginFailureHandlerModifier and TypeMethodDescriptiondefault LoginFailureHandler<A, B> LoginFailureHandler.andThen(LoginFailureHandler<? super A, ? super B> after) Invokes this login failure handler and then invokes the specified login failure handler.default LoginFailureHandler<A, B> LoginFailureHandler.compose(LoginFailureHandler<? super A, ? super B> before) Invokes the specified login failure handler and then invokes this login failure handler.LoginActionHandler.getLoginFailureHandler()Returns the login failure handler.static <A extends io.inverno.mod.http.base.ExchangeContext,B extends Exchange<A>>
LoginFailureHandler<A, B> LoginFailureHandler.of(LoginFailureHandler<? super A, ? super B>... handlers) Returns a composed login failure handler that invokes the specified handlers in sequence.Methods in io.inverno.mod.security.http.login with parameters of type LoginFailureHandlerModifier and TypeMethodDescriptiondefault LoginFailureHandler<A, B> LoginFailureHandler.andThen(LoginFailureHandler<? super A, ? super B> after) Invokes this login failure handler and then invokes the specified login failure handler.default LoginFailureHandler<A, B> LoginFailureHandler.compose(LoginFailureHandler<? super A, ? super B> before) Invokes the specified login failure handler and then invokes this login failure handler.static <A extends io.inverno.mod.http.base.ExchangeContext,B extends Exchange<A>>
LoginFailureHandler<A, B> LoginFailureHandler.of(LoginFailureHandler<? super A, ? super B>... handlers) Returns a composed login failure handler that invokes the specified handlers in sequence.Constructors in io.inverno.mod.security.http.login with parameters of type LoginFailureHandlerModifierConstructorDescriptionLoginActionHandler(CredentialsExtractor<A> credentialsExtractor, Authenticator<A, B> authenticator, LoginSuccessHandler<B, C, D> loginSuccessHandler, LoginFailureHandler<C, D> loginFailureHandler) Creates a login action handler with the specified credentials extractor, authenticator, login success handler and login failure handler.