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
  • Enum Constant Details

    • CREATED

      public static final ActivationStatus CREATED
      CREATED - status after the activation record was initialized.
    • PENDING_COMMIT

      public static final ActivationStatus PENDING_COMMIT
      PENDING_COMMIT - status after key exchange, the activation is waiting for commit.
    • ACTIVE

      public static final ActivationStatus ACTIVE
      ACTIVE - the activation was committed, and it is ready for signature verification.
    • BLOCKED

      public static final ActivationStatus BLOCKED
      BLOCKED - the activation is blocked.
    • REMOVED

      public static final ActivationStatus REMOVED
      REMOVED - the activation is removed.
  • Method Details

    • values

      public static ActivationStatus[] 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

      public static ActivationStatus 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