public enum AuditLogEventType extends Enum<AuditLogEventType>
Enum Constant and Description |
---|
ADDED_TO_GROUP
Indicates that a user or a group (child) has joined a group (parent).
|
ALIAS_CREATED
Indicates that an alias was created for a given user.
|
ALIAS_DELETED
Indicates that an alias was deleted for a given user.
|
ALIAS_UPDATED
Indicates that an existing alias was changed for a given user.
|
APPLICATION_CREATED
Indicates the creation of a new application.
|
APPLICATION_DELETED
Indicates that an application was removed.
|
APPLICATION_UPDATED
Indicates the that an application's configuration was changed.
|
COMPLETED
Deprecated.
This event type has been deprecated in favor of more specific event types (such as USER_CREATED).
Please use a more specific event type or
OTHER if none apply to your event. |
CONFIGURATION_MODIFIED
Indicates that Crowd's configuration has been modified.
|
CREATED
Deprecated.
This event type has been deprecated in favor of more specific event types (such as USER_CREATED).
Please use a more specific event type or
OTHER if none apply to your event. |
DELETED
Deprecated.
This event type has been deprecated in favor of more specific event types (such as USER_CREATED).
Please use a more specific event type or
OTHER if none apply to your event. |
DIRECTORY_CREATED
Indicates the creation of a new directory.
|
DIRECTORY_DELETED
Indicates that a directory was removed.
|
DIRECTORY_UPDATED
Indicates the that a directory's configuration was changed.
|
FAILED
Deprecated.
This event type has been deprecated in favor of more specific event types (such as USER_CREATED).
Please use a more specific event type or
OTHER if none apply to your event. |
GROUP_ADMIN_ASSIGNED
Indicates that either a group or a user have been assigned as administrators of some other group.
|
GROUP_ADMIN_REVOKED
Indicates that either a group or a user have been revoked administration access to some other group.
|
GROUP_CREATED
Indicates the creation of a new group.
|
GROUP_DELETED
Indicates that a group was removed.
|
GROUP_UPDATED
Indicates that group data was changed.
|
IMPORT_FINISHED
Indicates that a directory import has been finished.
|
IMPORT_STARTED
Indicates that a directory import has been started.
|
MODIFIED
Deprecated.
This event type has been deprecated in favor of more specific event types (such as USER_CREATED).
Please use a more specific event type or
OTHER if none apply to your event. |
OTHER
Indicates that the auditable action was none of the above
|
PASSWORD_CHANGED
Indicates that password was successfully changed for a user.
|
PASSWORD_RESET_FINISHED
Indicates that a password reset flow has been finished.
|
PASSWORD_RESET_STARTED
Indicates that a password reset flow has been initiated.
|
REMOVED_FROM_GROUP
Indicates that a user or a group (child) has left a group (parent).
|
RESTORE_FINISHED
Indicates that restoring Crowd from a backup file has been finished.
|
RESTORE_STARTED
Indicates that restoring Crowd from a backup file has been started.
|
STARTED
Deprecated.
This event type has been deprecated in favor of more specific event types (such as USER_CREATED).
Please use a more specific event type or
OTHER if none apply to your event. |
SYNCHRONIZATION_FINISHED
Indicates that a synchronization has been finished.
|
SYNCHRONIZATION_STARTED
Indicates that a synchronization has been started.
|
USER_CREATED
Indicates the creation of a new user.
|
USER_DELETED
Indicates that a user was removed.
|
USER_UPDATED
Indicates that user data was changed.
|
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.
|
@Deprecated public static final AuditLogEventType CREATED
OTHER
if none apply to your event.@Deprecated public static final AuditLogEventType MODIFIED
OTHER
if none apply to your event.@Deprecated public static final AuditLogEventType DELETED
OTHER
if none apply to your event.@Deprecated public static final AuditLogEventType STARTED
OTHER
if none apply to your event.@Deprecated public static final AuditLogEventType COMPLETED
OTHER
if none apply to your event.@Deprecated public static final AuditLogEventType FAILED
OTHER
if none apply to your event.public static final AuditLogEventType OTHER
public static final AuditLogEventType APPLICATION_CREATED
public static final AuditLogEventType APPLICATION_UPDATED
public static final AuditLogEventType APPLICATION_DELETED
public static final AuditLogEventType DIRECTORY_CREATED
public static final AuditLogEventType DIRECTORY_UPDATED
public static final AuditLogEventType DIRECTORY_DELETED
public static final AuditLogEventType CONFIGURATION_MODIFIED
public static final AuditLogEventType RESTORE_STARTED
public static final AuditLogEventType RESTORE_FINISHED
public static final AuditLogEventType USER_CREATED
public static final AuditLogEventType USER_UPDATED
public static final AuditLogEventType USER_DELETED
public static final AuditLogEventType GROUP_CREATED
public static final AuditLogEventType GROUP_UPDATED
public static final AuditLogEventType GROUP_DELETED
public static final AuditLogEventType ADDED_TO_GROUP
public static final AuditLogEventType REMOVED_FROM_GROUP
public static final AuditLogEventType ALIAS_CREATED
public static final AuditLogEventType ALIAS_UPDATED
public static final AuditLogEventType ALIAS_DELETED
public static final AuditLogEventType SYNCHRONIZATION_STARTED
public static final AuditLogEventType SYNCHRONIZATION_FINISHED
public static final AuditLogEventType IMPORT_STARTED
public static final AuditLogEventType IMPORT_FINISHED
public static final AuditLogEventType PASSWORD_RESET_STARTED
public static final AuditLogEventType PASSWORD_RESET_FINISHED
public static final AuditLogEventType PASSWORD_CHANGED
public static final AuditLogEventType GROUP_ADMIN_ASSIGNED
public static final AuditLogEventType GROUP_ADMIN_REVOKED
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 © 2020 Atlassian. All rights reserved.