Package org.keycloak.forms.login
Enum LoginFormsPages
- java.lang.Object
-
- java.lang.Enum<LoginFormsPages>
-
- org.keycloak.forms.login.LoginFormsPages
-
- All Implemented Interfaces:
Serializable
,Comparable<LoginFormsPages>
public enum LoginFormsPages extends Enum<LoginFormsPages>
- Author:
- Stian Thorgersen
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LoginFormsPages
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoginFormsPages[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGIN
public static final LoginFormsPages LOGIN
-
LOGIN_USERNAME
public static final LoginFormsPages LOGIN_USERNAME
-
LOGIN_PASSWORD
public static final LoginFormsPages LOGIN_PASSWORD
-
LOGIN_TOTP
public static final LoginFormsPages LOGIN_TOTP
-
LOGIN_CONFIG_TOTP
public static final LoginFormsPages LOGIN_CONFIG_TOTP
-
LOGIN_WEBAUTHN
public static final LoginFormsPages LOGIN_WEBAUTHN
-
LOGIN_VERIFY_EMAIL
public static final LoginFormsPages LOGIN_VERIFY_EMAIL
-
LOGIN_IDP_LINK_CONFIRM
public static final LoginFormsPages LOGIN_IDP_LINK_CONFIRM
-
LOGIN_IDP_LINK_EMAIL
public static final LoginFormsPages LOGIN_IDP_LINK_EMAIL
-
OAUTH_GRANT
public static final LoginFormsPages OAUTH_GRANT
-
LOGIN_RESET_PASSWORD
public static final LoginFormsPages LOGIN_RESET_PASSWORD
-
LOGIN_UPDATE_PASSWORD
public static final LoginFormsPages LOGIN_UPDATE_PASSWORD
-
LOGIN_SELECT_AUTHENTICATOR
public static final LoginFormsPages LOGIN_SELECT_AUTHENTICATOR
-
REGISTER
public static final LoginFormsPages REGISTER
-
REGISTER_USER_PROFILE
public static final LoginFormsPages REGISTER_USER_PROFILE
-
INFO
public static final LoginFormsPages INFO
-
ERROR
public static final LoginFormsPages ERROR
-
ERROR_WEBAUTHN
public static final LoginFormsPages ERROR_WEBAUTHN
-
LOGIN_UPDATE_PROFILE
public static final LoginFormsPages LOGIN_UPDATE_PROFILE
-
LOGIN_PAGE_EXPIRED
public static final LoginFormsPages LOGIN_PAGE_EXPIRED
-
CODE
public static final LoginFormsPages CODE
-
X509_CONFIRM
public static final LoginFormsPages X509_CONFIRM
-
SAML_POST_FORM
public static final LoginFormsPages SAML_POST_FORM
-
LOGIN_OAUTH2_DEVICE_VERIFY_USER_CODE
public static final LoginFormsPages LOGIN_OAUTH2_DEVICE_VERIFY_USER_CODE
-
UPDATE_USER_PROFILE
public static final LoginFormsPages UPDATE_USER_PROFILE
-
IDP_REVIEW_USER_PROFILE
public static final LoginFormsPages IDP_REVIEW_USER_PROFILE
-
LOGIN_RECOVERY_AUTHN_CODES_INPUT
public static final LoginFormsPages LOGIN_RECOVERY_AUTHN_CODES_INPUT
-
LOGIN_RECOVERY_AUTHN_CODES_CONFIG
public static final LoginFormsPages LOGIN_RECOVERY_AUTHN_CODES_CONFIG
-
FRONTCHANNEL_LOGOUT
public static final LoginFormsPages FRONTCHANNEL_LOGOUT
-
LOGOUT_CONFIRM
public static final LoginFormsPages LOGOUT_CONFIRM
-
UPDATE_EMAIL
public static final LoginFormsPages UPDATE_EMAIL
-
-
Method Detail
-
values
public static LoginFormsPages[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LoginFormsPages c : LoginFormsPages.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoginFormsPages valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-