Package de.xima.fc.mdl.enums
Enum EAuthConfigState
- All Implemented Interfaces:
Serializable
,Comparable<EAuthConfigState>
An enumeration with the possible states of an authenticator, indicating whether it's configuration is complete.
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe configuration of the authenticator is complete.The configuration of the authenticator is not complete yet. -
Method Summary
Modifier and TypeMethodDescriptionstatic EAuthConfigState
Returns the enum constant of this type with the specified name.static EAuthConfigState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IN_CONFIGURATION
The configuration of the authenticator is not complete yet. This is used, for example, when the user is still waiting for details from the identity provider, such as tokens or keys. -
ACTIVE
The configuration of the authenticator is complete. The authenticator can be used to authenticate users.
-
-
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
-