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
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ActivationStatusType
value()
Returns enum value defined as in schema.static ActivationStatusType
Returns the enum constant of this class with the specified name.static ActivationStatusType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ENABLED
The entity is active. It is enabled and fully operational. -
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
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
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
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 nameNullPointerException
- if the argument is null
-
value
Description copied from interface:TypeSafeEnum
Returns enum value defined as in schema.- Specified by:
value
in interfaceTypeSafeEnum
- Returns:
-
fromValue
-