public static enum AuditEvent.AuditSeverity extends java.lang.Enum<AuditEvent.AuditSeverity>
AuditEvent.| Enum Constant and Description |
|---|
AUDIT_FAILURE
Audit framework failure - we cannot correctly audit.
|
ERROR
Security event error - we tried to process security, but failed with exception (equivalent of http 500).
|
FAILURE
Security event failure - we tried to process security, but the result was negative (e.g.
|
INFO
General information.
|
SUCCESS
Security event success.
|
WARN
Security warning.
|
| Modifier and Type | Method and Description |
|---|---|
static AuditEvent.AuditSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuditEvent.AuditSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditEvent.AuditSeverity INFO
public static final AuditEvent.AuditSeverity SUCCESS
public static final AuditEvent.AuditSeverity WARN
public static final AuditEvent.AuditSeverity ERROR
public static final AuditEvent.AuditSeverity FAILURE
public static final AuditEvent.AuditSeverity AUDIT_FAILURE
public static AuditEvent.AuditSeverity[] values()
for (AuditEvent.AuditSeverity c : AuditEvent.AuditSeverity.values()) System.out.println(c);
public static AuditEvent.AuditSeverity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.