Enum Class AttributeRepositoryStates

java.lang.Object
java.lang.Enum<AttributeRepositoryStates>
org.apereo.cas.configuration.model.core.authentication.AttributeRepositoryStates
All Implemented Interfaces:
Serializable, Comparable<AttributeRepositoryStates>, Constable

public enum AttributeRepositoryStates extends Enum<AttributeRepositoryStates>
Since:
6.5.0
  • Enum Constant Details

    • ACTIVE

      public static final AttributeRepositoryStates ACTIVE
      Active and enabled repository, and is invoked by default automatically.
    • DISABLED

      public static final AttributeRepositoryStates DISABLED
      Attribute repository is disabled and will not be used to resolve people and attributes.
    • STANDBY

      public static final AttributeRepositoryStates STANDBY
      Repository is in a semi-enabled state, waiting to be called only on-demand when explicitly asked for and will not be registered into the resolution plan.
  • Method Details

    • values

      public static AttributeRepositoryStates[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AttributeRepositoryStates valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null