Class SecurityAuthenticationEvent
- java.lang.Object
-
- org.wildfly.security.auth.server.event.SecurityEvent
-
- org.wildfly.security.auth.server.event.SecurityDefiniteOutcomeEvent
-
- org.wildfly.security.auth.server.event.SecurityAuthenticationEvent
-
- Direct Known Subclasses:
SecurityAuthenticationFailedEvent
,SecurityAuthenticationSuccessfulEvent
public abstract class SecurityAuthenticationEvent extends SecurityDefiniteOutcomeEvent
A security authentication event.- Author:
- Darran Lofthouse
-
-
Constructor Summary
Constructors Constructor Description SecurityAuthenticationEvent(SecurityIdentity securityIdentity, boolean successful)
Create a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <P,R>
Raccept(SecurityEventVisitor<P,R> visitor, P param)
Accept the given visitor, calling the method which is most applicable to this event type.-
Methods inherited from class org.wildfly.security.auth.server.event.SecurityDefiniteOutcomeEvent
isSuccessful
-
Methods inherited from class org.wildfly.security.auth.server.event.SecurityEvent
getInstant, getSecurityIdentity
-
-
-
-
Constructor Detail
-
SecurityAuthenticationEvent
SecurityAuthenticationEvent(SecurityIdentity securityIdentity, boolean successful)
Create a new instance.- Parameters:
securityIdentity
- theSecurityIdentity
at the time of authentication.successful
- was the authentication process successful.
-
-
Method Detail
-
accept
public <P,R> R accept(SecurityEventVisitor<P,R> visitor, P param)
Description copied from class:SecurityEvent
Accept the given visitor, calling the method which is most applicable to this event type.- Overrides:
accept
in classSecurityEvent
- Type Parameters:
P
- the visitor parameter typeR
- the visitor return type- Parameters:
visitor
- the visitorparam
- the parameter to pass to the visitorhandleXxx
method- Returns:
- the value returned from the visitor
handleXxx
method
-
-