public enum AuditLogAuthorType extends Enum<AuditLogAuthorType>
Enum Constant and Description |
---|
APPLICATION
The audit action was performed by an application authenticating to Crowd
|
DATA_IMPORT
The action was performed by a data import from an external source.
|
OTHER
The audit action was performed by something other than the entities above, ie custom integration
|
PLUGIN
The audit action was performed by a plugin
|
SYNCHRONIZATION
The action was performed by a synchronization with a remote directory
|
SYSTEM
The audit action was performed by Crowd, ie as consequence of another action
|
USER
The audit action was performed by a Crowd user
|
Modifier and Type | Method and Description |
---|---|
static AuditLogAuthorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLogAuthorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLogAuthorType USER
public static final AuditLogAuthorType APPLICATION
public static final AuditLogAuthorType SYSTEM
public static final AuditLogAuthorType PLUGIN
public static final AuditLogAuthorType SYNCHRONIZATION
public static final AuditLogAuthorType DATA_IMPORT
public static final AuditLogAuthorType OTHER
public static AuditLogAuthorType[] values()
for (AuditLogAuthorType c : AuditLogAuthorType.values()) System.out.println(c);
public static AuditLogAuthorType 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 © 2024 Atlassian. All rights reserved.