Enum Class ActivationStatusType

java.lang.Object
java.lang.Enum<ActivationStatusType>
com.evolveum.midpoint.xml.ns._public.common.common_3.ActivationStatusType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<ActivationStatusType>, Constable

public enum ActivationStatusType extends Enum<ActivationStatusType> implements TypeSafeEnum
An enumeration that indicates the activation status of a particular entity. The activation status determines whether the entity is active (enabled) or inactive (disabled, archived, etc.). Please see documentation of individual enumeration values for more details.
  • Enum Constant Details

    • ENABLED

      public static final ActivationStatusType ENABLED
      The entity is active. It is enabled and fully operational.
    • DISABLED

      public static final ActivationStatusType DISABLED
      The entity is inactive. It has been disabled, haven't reached the activation period, etc. This is used to indicate that the entity is TEMPORARILY inactive and there is an intent to enable the entity later. Usually used for an employee on parental leave, sabbatical, temporarily disabled account for security reasons, etc.
    • ARCHIVED

      public static final ActivationStatusType ARCHIVED
      The entity is inactive. It is no longer active and there are no plans to ever re-activate it. This is a PERMANENT state of deactivation. This state is used to keep the user record or account around for archival purposes. E.g. some systems require that the account exists to maintain referential consistency of historical data, audit records, etc. It may also be used to "blocks" the user or account identifier to avoid their reuse. Usually used for retired employees and similar cases. DEPRECATED. The "archival" state is to be managed through the object lifecycle state instead. Since 4.8, this value will not be put into "effectiveStatus" property anymore.
  • Method Details

    • values

      public static ActivationStatusType[] 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 ActivationStatusType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static ActivationStatusType fromValue(String v)