Enum Class ADUserAccountControl.Flags

java.lang.Object
java.lang.Enum<ADUserAccountControl.Flags>
org.graylog.security.authservice.ldap.ADUserAccountControl.Flags
All Implemented Interfaces:
Serializable, Comparable<ADUserAccountControl.Flags>, Constable
Enclosing class:
ADUserAccountControl

public static enum ADUserAccountControl.Flags extends Enum<ADUserAccountControl.Flags>
  • Enum Constant Details

    • ACCOUNTDISABLE

      public static final ADUserAccountControl.Flags ACCOUNTDISABLE
      The user account is disabled.
    • NORMAL_ACCOUNT

      public static final ADUserAccountControl.Flags NORMAL_ACCOUNT
      This is a default account type that represents a typical user. (not a computer, for example)
    • PASSWORD_EXPIRED

      public static final ADUserAccountControl.Flags PASSWORD_EXPIRED
      The user password has expired. (This doesn't work with newer AD implementations)
  • Method Details

    • values

      public static ADUserAccountControl.Flags[] 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 ADUserAccountControl.Flags 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
    • getFlagValue

      public int getFlagValue()
    • isSetIn

      public boolean isSetIn(int userAccountControlValue)