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:
java.io.Serializable
public class InteractiveAuthenticationSuccessEvent extends AbstractAuthenticationEvent
Indicates an interactive authentication was successful.The
ApplicationEvent
'ssource
will be theAuthentication
object.This does not extend from
AuthenticationSuccessEvent
to avoid duplicateAuthenticationSuccessEvent
s being sent to any listeners.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InteractiveAuthenticationSuccessEvent(Authentication authentication, java.lang.Class<?> generatedBy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>
getGeneratedBy()
Getter for theClass
that generated this event.-
Methods inherited from class org.springframework.security.authentication.event.AbstractAuthenticationEvent
getAuthentication
-
-
-
-
Constructor Detail
-
InteractiveAuthenticationSuccessEvent
public InteractiveAuthenticationSuccessEvent(Authentication authentication, java.lang.Class<?> generatedBy)
-
-