Package org.azd.enums

Enum Class AccountUserStatus

java.lang.Object
java.lang.Enum<AccountUserStatus>
org.azd.enums.AccountUserStatus
All Implemented Interfaces:
Serializable, Comparable<AccountUserStatus>, Constable

public enum AccountUserStatus extends Enum<AccountUserStatus>
User status in the account
  • Enum Constant Details

    • ACTIVE

      public static final AccountUserStatus ACTIVE
      User has signed in at least once to the VSTS account
    • DELETED

      public static final AccountUserStatus DELETED
      User is removed from the VSTS account by the VSTS account admin
    • DISABLED

      public static final AccountUserStatus DISABLED
      User cannot sign in; primarily used by admin to temporarily remove a user due to absence or license reallocation
    • EXPIRED

      public static final AccountUserStatus EXPIRED
      User can sign in; primarily used when license is in expired state and we give a grace period
    • NONE

      public static final AccountUserStatus NONE
    • PENDING

      public static final AccountUserStatus PENDING
      User is invited to join the VSTS account by the VSTS account admin, but has not signed up/signed in yet
    • PENDING_DISABLED

      public static final AccountUserStatus PENDING_DISABLED
      User is disabled; if reenabled, they will still be in the Pending state
  • Method Details

    • values

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