Package io.micronaut.security.event
Class LoginFailedEvent
java.lang.Object
java.util.EventObject
io.micronaut.context.event.ApplicationEvent
io.micronaut.security.event.LoginFailedEvent
- All Implemented Interfaces:
Serializable
public class LoginFailedEvent
extends io.micronaut.context.event.ApplicationEvent
Event triggered when an unsuccessful login takes place.
- Since:
- 1.0
- Author:
- Sergio del Amo
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionLoginFailedEvent
(Object source) Event triggered when an unsuccessful login takes place. -
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
LoginFailedEvent
Event triggered when an unsuccessful login takes place.- Parameters:
source
- TheAuthenticationResponse
object signaling the authentication failure and reason.- Throws:
IllegalArgumentException
- if source is null.
-