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 SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static LoginFormsPagesvalueOf(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- 
LOGINpublic static final LoginFormsPages LOGIN 
 - 
LOGIN_USERNAMEpublic static final LoginFormsPages LOGIN_USERNAME 
 - 
LOGIN_PASSWORDpublic static final LoginFormsPages LOGIN_PASSWORD 
 - 
LOGIN_TOTPpublic static final LoginFormsPages LOGIN_TOTP 
 - 
LOGIN_CONFIG_TOTPpublic static final LoginFormsPages LOGIN_CONFIG_TOTP 
 - 
LOGIN_WEBAUTHNpublic static final LoginFormsPages LOGIN_WEBAUTHN 
 - 
LOGIN_VERIFY_EMAILpublic static final LoginFormsPages LOGIN_VERIFY_EMAIL 
 - 
LOGIN_IDP_LINK_CONFIRMpublic static final LoginFormsPages LOGIN_IDP_LINK_CONFIRM 
 - 
LOGIN_IDP_LINK_EMAILpublic static final LoginFormsPages LOGIN_IDP_LINK_EMAIL 
 - 
OAUTH_GRANTpublic static final LoginFormsPages OAUTH_GRANT 
 - 
LOGIN_RESET_PASSWORDpublic static final LoginFormsPages LOGIN_RESET_PASSWORD 
 - 
LOGIN_UPDATE_PASSWORDpublic static final LoginFormsPages LOGIN_UPDATE_PASSWORD 
 - 
LOGIN_SELECT_AUTHENTICATORpublic static final LoginFormsPages LOGIN_SELECT_AUTHENTICATOR 
 - 
REGISTERpublic static final LoginFormsPages REGISTER 
 - 
REGISTER_USER_PROFILEpublic static final LoginFormsPages REGISTER_USER_PROFILE 
 - 
INFOpublic static final LoginFormsPages INFO 
 - 
ERRORpublic static final LoginFormsPages ERROR 
 - 
ERROR_WEBAUTHNpublic static final LoginFormsPages ERROR_WEBAUTHN 
 - 
LOGIN_UPDATE_PROFILEpublic static final LoginFormsPages LOGIN_UPDATE_PROFILE 
 - 
LOGIN_PAGE_EXPIREDpublic static final LoginFormsPages LOGIN_PAGE_EXPIRED 
 - 
CODEpublic static final LoginFormsPages CODE 
 - 
X509_CONFIRMpublic static final LoginFormsPages X509_CONFIRM 
 - 
SAML_POST_FORMpublic static final LoginFormsPages SAML_POST_FORM 
 - 
LOGIN_OAUTH2_DEVICE_VERIFY_USER_CODEpublic static final LoginFormsPages LOGIN_OAUTH2_DEVICE_VERIFY_USER_CODE 
 - 
UPDATE_USER_PROFILEpublic static final LoginFormsPages UPDATE_USER_PROFILE 
 - 
IDP_REVIEW_USER_PROFILEpublic static final LoginFormsPages IDP_REVIEW_USER_PROFILE 
 - 
LOGIN_RECOVERY_AUTHN_CODES_INPUTpublic static final LoginFormsPages LOGIN_RECOVERY_AUTHN_CODES_INPUT 
 - 
LOGIN_RECOVERY_AUTHN_CODES_CONFIGpublic static final LoginFormsPages LOGIN_RECOVERY_AUTHN_CODES_CONFIG 
 - 
FRONTCHANNEL_LOGOUTpublic static final LoginFormsPages FRONTCHANNEL_LOGOUT 
 - 
LOGOUT_CONFIRMpublic static final LoginFormsPages LOGOUT_CONFIRM 
 - 
UPDATE_EMAILpublic static final LoginFormsPages UPDATE_EMAIL 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-