public static enum SecurityEvent.Type extends Enum<SecurityEvent.Type>
| Enum Constant and Description |
|---|
OIDC_LOGIN
OIDC Login event which is reported after the first user authentication but also when the user's session
has expired and the user has re-authenticated at the OIDC provider site.
|
OIDC_LOGOUT_RP_INITIATED
OIDC Logout event is reported when the current user has started an RP-initiated OIDC logout flow.
|
OIDC_SESSION_EXPIRED_AND_REFRESHED
OIDC Session expired and refreshed event is reported if a session has expired but been successfully refreshed
without the user having to re-authenticate again at the OIDC site.
|
OIDC_SESSION_REFRESHED
OIDC Session refreshed event is reported if it has been detected that an ID token will expire shortly and the session
has been successfully auto-refreshed without the user having to re-authenticate again at the OIDC site.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityEvent.Type OIDC_LOGIN
public static final SecurityEvent.Type OIDC_SESSION_REFRESHED
public static final SecurityEvent.Type OIDC_SESSION_EXPIRED_AND_REFRESHED
public static final SecurityEvent.Type OIDC_LOGOUT_RP_INITIATED
public static SecurityEvent.Type[] values()
for (SecurityEvent.Type c : SecurityEvent.Type.values()) System.out.println(c);
public static SecurityEvent.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 JBoss by Red Hat. All rights reserved.