Enum EAuthRenderType
- All Implemented Interfaces:
Serializable, Comparable<EAuthRenderType>
Enum for the different types of authentication renderers. The type determines how the authenticator is rendered. The
types listed here are the default types. Custom types may be added in the future by implementing via plugins.
- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe authenticator is rendered as a button that redirects to a third-party identity provider.The authenticator is rendered as an input form with a single password field.The authenticator is rendered as an input form with a username and password field. -
Method Summary
Modifier and TypeMethodDescriptiongetId()static EAuthRenderTypeReturns the enum constant of this type with the specified name.static EAuthRenderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FORM_INPUT_USERNAME_PASSWORD
The authenticator is rendered as an input form with a username and password field. The username may also be another type of identifier, such as an email address. -
FORM_INPUT_PASSWORD
The authenticator is rendered as an input form with a single password field. -
BUTTON_REDIRECT
The authenticator is rendered as a button that redirects to a third-party identity provider.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getId
-