Enum EAuthConfigState

    • Enum Constant Detail

      • 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 Detail

      • values

        public static EAuthConfigState[] 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 (EAuthConfigState c : EAuthConfigState.values())
            System.out.println(c);
        
        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