Enum AuditMessage.Category
- java.lang.Object
-
- java.lang.Enum<AuditMessage.Category>
-
- com.floragunn.searchguard.auditlog.impl.AuditMessage.Category
-
- All Implemented Interfaces:
Serializable,Comparable<AuditMessage.Category>
- Enclosing class:
- AuditMessage
public static enum AuditMessage.Category extends Enum<AuditMessage.Category>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuditMessage.CategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static AuditMessage.Category[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BAD_HEADERS
public static final AuditMessage.Category BAD_HEADERS
-
FAILED_LOGIN
public static final AuditMessage.Category FAILED_LOGIN
-
BLOCKED_IP
public static final AuditMessage.Category BLOCKED_IP
-
BLOCKED_USER
public static final AuditMessage.Category BLOCKED_USER
-
MISSING_PRIVILEGES
public static final AuditMessage.Category MISSING_PRIVILEGES
-
SG_INDEX_ATTEMPT
public static final AuditMessage.Category SG_INDEX_ATTEMPT
-
SSL_EXCEPTION
public static final AuditMessage.Category SSL_EXCEPTION
-
AUTHENTICATED
public static final AuditMessage.Category AUTHENTICATED
-
GRANTED_PRIVILEGES
public static final AuditMessage.Category GRANTED_PRIVILEGES
-
COMPLIANCE_DOC_READ
public static final AuditMessage.Category COMPLIANCE_DOC_READ
-
COMPLIANCE_DOC_WRITE
public static final AuditMessage.Category COMPLIANCE_DOC_WRITE
-
COMPLIANCE_EXTERNAL_CONFIG
public static final AuditMessage.Category COMPLIANCE_EXTERNAL_CONFIG
-
COMPLIANCE_INTERNAL_CONFIG_READ
public static final AuditMessage.Category COMPLIANCE_INTERNAL_CONFIG_READ
-
COMPLIANCE_INTERNAL_CONFIG_WRITE
public static final AuditMessage.Category COMPLIANCE_INTERNAL_CONFIG_WRITE
-
COMPLIANCE_IMMUTABLE_INDEX_ATTEMPT
public static final AuditMessage.Category COMPLIANCE_IMMUTABLE_INDEX_ATTEMPT
-
-
Method Detail
-
values
public static AuditMessage.Category[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuditMessage.Category c : AuditMessage.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditMessage.Category 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 nameNullPointerException- if the argument is null
-
-