Package com.atlan.model.enums
Enum Class KeycloakEventType
- All Implemented Interfaces:
AtlanEnum
,Serializable
,Comparable<KeycloakEventType>
,Constable
Source (keycloak): server-spi-private/src/main/java/org/keycloak/events/EventType.java
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionApplication / client has exchanged a code for a token.User has logged in.User has logged out.Application / client has refreshed a token.User has registered.Password for the account has been reset.Password reset email has been sent.Verification email has been sent.Email address for an account has changed.Password for an account has changed.Email address for an account has been verified. -
Method Summary
Modifier and TypeMethodDescriptionstatic KeycloakEventType
getValue()
static KeycloakEventType
Returns the enum constant of this class with the specified name.static KeycloakEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOGIN
User has logged in. -
LOGIN_ERROR
-
REGISTER
User has registered. -
REGISTER_ERROR
-
LOGOUT
User has logged out. -
LOGOUT_ERROR
-
CODE_TO_TOKEN
Application / client has exchanged a code for a token. -
CODE_TO_TOKEN_ERROR
-
CLIENT_LOGIN
-
CLIENT_LOGIN_ERROR
-
REFRESH_TOKEN
Application / client has refreshed a token. -
REFRESH_TOKEN_ERROR
-
VALIDATE_ACCESS_TOKEN
-
VALIDATE_ACCESS_TOKEN_ERROR
-
INTROSPECT_TOKEN
-
INTROSPECT_TOKEN_ERROR
-
FEDERATED_IDENTITY_LINK
-
FEDERATED_IDENTITY_LINK_ERROR
-
REMOVE_FEDERATED_IDENTITY
-
REMOVE_FEDERATED_IDENTITY_ERROR
-
UPDATE_EMAIL
Email address for an account has changed. -
UPDATE_EMAIL_ERROR
-
UPDATE_PROFILE
-
UPDATE_PROFILE_ERROR
-
UPDATE_PASSWORD
Password for an account has changed. -
UPDATE_PASSWORD_ERROR
-
UPDATE_TOTP
-
UPDATE_TOTP_ERROR
-
VERIFY_EMAIL
Email address for an account has been verified. -
VERIFY_EMAIL_ERROR
-
VERIFY_PROFILE
-
VERIFY_PROFILE_ERROR
-
REMOVE_TOTP
-
REMOVE_TOTP_ERROR
-
GRANT_CONSENT
-
GRANT_CONSENT_ERROR
-
UPDATE_CONSENT
-
UPDATE_CONSENT_ERROR
-
REVOKE_GRANT
-
REVOKE_GRANT_ERROR
-
SEND_VERIFY_EMAIL
Verification email has been sent. -
SEND_VERIFY_EMAIL_ERROR
-
SEND_RESET_PASSWORD
Password reset email has been sent. -
SEND_RESET_PASSWORD_ERROR
-
SEND_IDENTITY_PROVIDER_LINK
-
SEND_IDENTITY_PROVIDER_LINK_ERROR
-
RESET_PASSWORD
Password for the account has been reset. -
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
-
-
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
-
fromValue
-
getValue
-