Class RealmAbandonedAuthenticationEvent
- java.lang.Object
- 
- org.wildfly.security.auth.server.event.RealmEvent
- 
- org.wildfly.security.auth.server.event.RealmAuthenticationEvent
- 
- org.wildfly.security.auth.server.event.RealmAbandonedAuthenticationEvent
 
 
 
- 
 public final class RealmAbandonedAuthenticationEvent extends RealmAuthenticationEvent An event indicating that authentication was abandoned before it could complete.- Author:
- David M. Lloyd
 
- 
- 
Constructor SummaryConstructors Constructor Description RealmAbandonedAuthenticationEvent(RealmIdentity realmIdentity)Construct a new instance.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <P,R>
 Raccept(RealmEventVisitor<P,R> visitor, P param)Accept the given visitor, calling the method which is most applicable to this event type.booleanisFailure()Determine if this authentication definitely failed.booleanisSuccess()Determine if this authentication was definitely successful.- 
Methods inherited from class org.wildfly.security.auth.server.event.RealmAuthenticationEventgetRealmIdentity
 
- 
 
- 
- 
- 
Constructor Detail- 
RealmAbandonedAuthenticationEventpublic RealmAbandonedAuthenticationEvent(RealmIdentity realmIdentity) Construct a new instance.- Parameters:
- realmIdentity- the realm identity of the authentication event
 
 
- 
 - 
Method Detail- 
acceptpublic <P,R> R accept(RealmEventVisitor<P,R> visitor, P param) Description copied from class:RealmEventAccept the given visitor, calling the method which is most applicable to this event type.- Overrides:
- acceptin class- RealmAuthenticationEvent
- Type Parameters:
- P- the visitor parameter type
- R- the visitor return type
- Parameters:
- visitor- the visitor
- param- the parameter to pass to the visitor- handleXxxmethod
- Returns:
- the value returned from the visitor handleXxxmethod
 
 - 
isSuccesspublic boolean isSuccess() Description copied from class:RealmAuthenticationEventDetermine if this authentication was definitely successful.- Specified by:
- isSuccessin class- RealmAuthenticationEvent
- Returns:
- trueif the authentication was definitely successful,- falseif it was not definitely successful
 
 - 
isFailurepublic boolean isFailure() Description copied from class:RealmAuthenticationEventDetermine if this authentication definitely failed.- Specified by:
- isFailurein class- RealmAuthenticationEvent
- Returns:
- trueif the authentication definitely failed,- falseif it did not definitely fail
 
 
- 
 
-