Package io.jmix.core.security.event
Class PreAuthenticationCheckEvent
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
io.jmix.core.security.event.PreAuthenticationCheckEvent
- All Implemented Interfaces:
- Serializable
public class PreAuthenticationCheckEvent
extends org.springframework.context.ApplicationEvent
Event is fired during authentication process to verify the status of the loaded UserDetails
 before validation of the credentials takes place.
 See 
AbstractUserDetailsAuthenticationProvider.setPreAuthenticationChecks(UserDetailsChecker).- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionPreAuthenticationCheckEvent(org.springframework.security.core.userdetails.UserDetails user) Create a newPreAuthenticationCheckEvent.
- 
Method SummaryModifier and TypeMethodDescriptionorg.springframework.security.core.userdetails.UserDetailsgetUser()Methods inherited from class org.springframework.context.ApplicationEventgetTimestampMethods inherited from class java.util.EventObjectgetSource, toString
- 
Constructor Details- 
PreAuthenticationCheckEventpublic PreAuthenticationCheckEvent(org.springframework.security.core.userdetails.UserDetails user) Create a newPreAuthenticationCheckEvent.- Parameters:
- user- -- UserDetailsto validate.
 
 
- 
- 
Method Details- 
getUserpublic org.springframework.security.core.userdetails.UserDetails getUser()- Returns:
- UserDetailsto validate
 
 
-