Interface WebAuthSessionChangeEvent
-
public interface WebAuthSessionChangeEvent
Posted to aWebAuthSession
'sEventBus
when theWebAuthSession
has changed. Fetch the latestWebAuthSessionContext
by callingWebAuthSession.getContext()
.- See Also:
WebAuthSession.getEventBus()
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
WebAuthSessionChangeEvent.Cause
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<WebAuthSessionChangeEvent.Cause>
getCause()
default java.util.Optional<java.lang.String>
getMessage()
-
-
-
Method Detail
-
getCause
@Nonnull default java.util.Optional<WebAuthSessionChangeEvent.Cause> getCause()
- Returns:
- an
Optional
WebAuthSessionChangeEvent.Cause
for this event
-
getMessage
@Nonnull default java.util.Optional<java.lang.String> getMessage()
- Returns:
- an
Optional
message associated with this event
-
-