Package org.keycloak.events
Enum Class EventType
- All Implemented Interfaces:
Serializable
,Comparable<EventType>
,Constable
,EnumWithStableIndex
- Author:
- Stian Thorgersen
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.Deprecated.see KEYCLOAK-2266Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionint
boolean
Determines whether this event is stored when the admin has not set a specific set of event types to save.static EventType
Returns the enum constant of this class with the specified name.static EventType
static EventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOGIN
-
LOGIN_ERROR
-
REGISTER
-
REGISTER_ERROR
-
LOGOUT
-
LOGOUT_ERROR
-
CODE_TO_TOKEN
-
CODE_TO_TOKEN_ERROR
-
CLIENT_LOGIN
-
CLIENT_LOGIN_ERROR
-
REFRESH_TOKEN
-
REFRESH_TOKEN_ERROR
-
VALIDATE_ACCESS_TOKEN
Deprecated.see KEYCLOAK-2266 -
VALIDATE_ACCESS_TOKEN_ERROR
Deprecated. -
INTROSPECT_TOKEN
-
INTROSPECT_TOKEN_ERROR
-
FEDERATED_IDENTITY_LINK
-
FEDERATED_IDENTITY_LINK_ERROR
-
REMOVE_FEDERATED_IDENTITY
-
REMOVE_FEDERATED_IDENTITY_ERROR
-
UPDATE_EMAIL
-
UPDATE_EMAIL_ERROR
-
UPDATE_PROFILE
-
UPDATE_PROFILE_ERROR
-
UPDATE_PASSWORD
Deprecated. -
UPDATE_PASSWORD_ERROR
Deprecated. -
UPDATE_TOTP
Deprecated. -
UPDATE_TOTP_ERROR
Deprecated. -
VERIFY_EMAIL
-
VERIFY_EMAIL_ERROR
-
VERIFY_PROFILE
-
VERIFY_PROFILE_ERROR
-
REMOVE_TOTP
Deprecated. -
REMOVE_TOTP_ERROR
Deprecated. -
GRANT_CONSENT
-
GRANT_CONSENT_ERROR
-
UPDATE_CONSENT
-
UPDATE_CONSENT_ERROR
-
REVOKE_GRANT
-
REVOKE_GRANT_ERROR
-
SEND_VERIFY_EMAIL
-
SEND_VERIFY_EMAIL_ERROR
-
SEND_RESET_PASSWORD
-
SEND_RESET_PASSWORD_ERROR
-
SEND_IDENTITY_PROVIDER_LINK
-
SEND_IDENTITY_PROVIDER_LINK_ERROR
-
RESET_PASSWORD
-
RESET_PASSWORD_ERROR
-
RESTART_AUTHENTICATION
-
RESTART_AUTHENTICATION_ERROR
-
INVALID_SIGNATURE
-
INVALID_SIGNATURE_ERROR
-
REGISTER_NODE
-
REGISTER_NODE_ERROR
-
UNREGISTER_NODE
-
UNREGISTER_NODE_ERROR
-
USER_INFO_REQUEST
-
USER_INFO_REQUEST_ERROR
-
IDENTITY_PROVIDER_LINK_ACCOUNT
-
IDENTITY_PROVIDER_LINK_ACCOUNT_ERROR
-
IDENTITY_PROVIDER_LOGIN
-
IDENTITY_PROVIDER_LOGIN_ERROR
-
IDENTITY_PROVIDER_FIRST_LOGIN
-
IDENTITY_PROVIDER_FIRST_LOGIN_ERROR
-
IDENTITY_PROVIDER_POST_LOGIN
-
IDENTITY_PROVIDER_POST_LOGIN_ERROR
-
IDENTITY_PROVIDER_RESPONSE
-
IDENTITY_PROVIDER_RESPONSE_ERROR
-
IDENTITY_PROVIDER_RETRIEVE_TOKEN
-
IDENTITY_PROVIDER_RETRIEVE_TOKEN_ERROR
-
IMPERSONATE
-
IMPERSONATE_ERROR
-
CUSTOM_REQUIRED_ACTION
-
CUSTOM_REQUIRED_ACTION_ERROR
-
EXECUTE_ACTIONS
-
EXECUTE_ACTIONS_ERROR
-
EXECUTE_ACTION_TOKEN
-
EXECUTE_ACTION_TOKEN_ERROR
-
CLIENT_INFO
-
CLIENT_INFO_ERROR
-
CLIENT_REGISTER
-
CLIENT_REGISTER_ERROR
-
CLIENT_UPDATE
-
CLIENT_UPDATE_ERROR
-
CLIENT_DELETE
-
CLIENT_DELETE_ERROR
-
CLIENT_INITIATED_ACCOUNT_LINKING
-
CLIENT_INITIATED_ACCOUNT_LINKING_ERROR
-
TOKEN_EXCHANGE
-
TOKEN_EXCHANGE_ERROR
-
OAUTH2_DEVICE_AUTH
-
OAUTH2_DEVICE_AUTH_ERROR
-
OAUTH2_DEVICE_VERIFY_USER_CODE
-
OAUTH2_DEVICE_VERIFY_USER_CODE_ERROR
-
OAUTH2_DEVICE_CODE_TO_TOKEN
-
OAUTH2_DEVICE_CODE_TO_TOKEN_ERROR
-
AUTHREQID_TO_TOKEN
-
AUTHREQID_TO_TOKEN_ERROR
-
PERMISSION_TOKEN
-
PERMISSION_TOKEN_ERROR
-
DELETE_ACCOUNT
-
DELETE_ACCOUNT_ERROR
-
PUSHED_AUTHORIZATION_REQUEST
-
PUSHED_AUTHORIZATION_REQUEST_ERROR
-
USER_DISABLED_BY_PERMANENT_LOCKOUT
-
USER_DISABLED_BY_PERMANENT_LOCKOUT_ERROR
-
USER_DISABLED_BY_TEMPORARY_LOCKOUT
-
USER_DISABLED_BY_TEMPORARY_LOCKOUT_ERROR
-
OAUTH2_EXTENSION_GRANT
-
OAUTH2_EXTENSION_GRANT_ERROR
-
FEDERATED_IDENTITY_OVERRIDE_LINK
-
FEDERATED_IDENTITY_OVERRIDE_LINK_ERROR
-
UPDATE_CREDENTIAL
-
UPDATE_CREDENTIAL_ERROR
-
REMOVE_CREDENTIAL
-
REMOVE_CREDENTIAL_ERROR
-
INVITE_ORG
-
INVITE_ORG_ERROR
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getStableIndex
public int getStableIndex()- Specified by:
getStableIndex
in interfaceEnumWithStableIndex
- Returns:
- Unique numeric index which is stable in time and identifies an instance. Reusing the same index for two distinct entries of the same class is forbidden even if they cannot exist at the same time (e.g. one is deleted before other is introduced).
-
isSaveByDefault
public boolean isSaveByDefault()Determines whether this event is stored when the admin has not set a specific set of event types to save.- Returns:
-
valueOfInteger
-