Class InteractiveAuthenticationSuccessEvent
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
org.springframework.security.authentication.event.AbstractAuthenticationEvent
org.springframework.security.authentication.event.InteractiveAuthenticationSuccessEvent
- All Implemented Interfaces:
Serializable
Indicates an interactive authentication was successful.
The ApplicationEvent
's source
will be the
Authentication
object.
This does not extend from AuthenticationSuccessEvent
to avoid duplicate
AuthenticationSuccessEvent
s being sent to any listeners.
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionInteractiveAuthenticationSuccessEvent
(Authentication authentication, Class<?> generatedBy) -
Method Summary
Methods inherited from class org.springframework.security.authentication.event.AbstractAuthenticationEvent
getAuthentication
Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp
Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
InteractiveAuthenticationSuccessEvent
-
-
Method Details
-
getGeneratedBy
Getter for theClass
that generated this event. This can be useful for generating additional logging information.- Returns:
- the class
-