java.lang.Object
java.lang.Enum<AuditLevel>
org.elasticsearch.xpack.security.audit.AuditLevel
All Implemented Interfaces:
Serializable, Comparable<AuditLevel>, Constable

public enum AuditLevel extends Enum<AuditLevel>
  • Enum Constant Details

    • ANONYMOUS_ACCESS_DENIED

      public static final AuditLevel ANONYMOUS_ACCESS_DENIED
    • AUTHENTICATION_FAILED

      public static final AuditLevel AUTHENTICATION_FAILED
    • REALM_AUTHENTICATION_FAILED

      public static final AuditLevel REALM_AUTHENTICATION_FAILED
    • ACCESS_GRANTED

      public static final AuditLevel ACCESS_GRANTED
    • ACCESS_DENIED

      public static final AuditLevel ACCESS_DENIED
    • TAMPERED_REQUEST

      public static final AuditLevel TAMPERED_REQUEST
    • CONNECTION_GRANTED

      public static final AuditLevel CONNECTION_GRANTED
    • CONNECTION_DENIED

      public static final AuditLevel CONNECTION_DENIED
    • SYSTEM_ACCESS_GRANTED

      public static final AuditLevel SYSTEM_ACCESS_GRANTED
    • SECURITY_CONFIG_CHANGE

      public static final AuditLevel SECURITY_CONFIG_CHANGE
    • AUTHENTICATION_SUCCESS

      public static final AuditLevel AUTHENTICATION_SUCCESS
    • RUN_AS_GRANTED

      public static final AuditLevel RUN_AS_GRANTED
    • RUN_AS_DENIED

      public static final AuditLevel RUN_AS_DENIED
  • Method Details

    • values

      public static AuditLevel[] 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 AuditLevel 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
    • parse

      public static EnumSet<AuditLevel> parse(List<String> includeLevels, List<String> excludeLevels)