public enum AuditLogEventType extends Enum<AuditLogEventType>
| Enum Constant and Description |
|---|
COMPLETED
Indicates a successful completion of a long running process or task
|
CREATED
Indicates that a new entity was created during the auditable action
|
DELETED
Indicates that an entity was deleted during the auditable action
|
FAILED
Indicates a failure of a long running process or task
|
MODIFIED
Indicates that an entity was modified during the auditable action
|
OTHER
Indicates that the auditable action was none of the above
|
STARTED
Indicates a start of a long running process or task
|
| Modifier and Type | Method and Description |
|---|---|
static AuditLogEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogEventType CREATED
public static final AuditLogEventType MODIFIED
public static final AuditLogEventType DELETED
public static final AuditLogEventType STARTED
public static final AuditLogEventType COMPLETED
public static final AuditLogEventType FAILED
public static final AuditLogEventType OTHER
public static AuditLogEventType[] values()
for (AuditLogEventType c : AuditLogEventType.values()) System.out.println(c);
public static AuditLogEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017 Atlassian. All rights reserved.