Enum EAuthConfigState

java.lang.Object
java.lang.Enum<EAuthConfigState>
de.xima.fc.mdl.enums.EAuthConfigState
All Implemented Interfaces:
Serializable, Comparable<EAuthConfigState>

public enum EAuthConfigState extends Enum<EAuthConfigState>
An enumeration with the possible states of an authenticator, indicating whether it's configuration is complete.
Author:
XIMA MEDIA GmbH
  • Enum Constant Details

    • IN_CONFIGURATION

      public static final EAuthConfigState 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

      public static final EAuthConfigState ACTIVE
      The configuration of the authenticator is complete. The authenticator can be used to authenticate users.
  • Method Details

    • values

      public static EAuthConfigState[] 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

      public static EAuthConfigState 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