Enum ActivationStatus
java.lang.Object
java.lang.Enum<ActivationStatus>
io.getlime.security.powerauth.rest.api.spring.model.ActivationStatus
- All Implemented Interfaces:
Serializable,Comparable<ActivationStatus>,java.lang.constant.Constable
public enum ActivationStatus extends Enum<ActivationStatus>
Activation status enumeration.
- Author:
- Roman Strobl, roman.strobl@wultra.com
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEACTIVE - the activation was committed, and it is ready for signature verification.BLOCKEDBLOCKED - the activation is blocked.CREATEDCREATED - status after the activation record was initialized.PENDING_COMMITPENDING_COMMIT - status after key exchange, the activation is waiting for commit.REMOVEDREMOVED - the activation is removed. -
Method Summary
Modifier and Type Method Description static ActivationStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ActivationStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATED
CREATED - status after the activation record was initialized. -
PENDING_COMMIT
PENDING_COMMIT - status after key exchange, the activation is waiting for commit. -
ACTIVE
ACTIVE - the activation was committed, and it is ready for signature verification. -
BLOCKED
BLOCKED - the activation is blocked. -
REMOVED
REMOVED - the activation is removed.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-