Package com.atlassian.crowd.audit
Enum Class AuditLogEntityType
- All Implemented Interfaces:
Serializable
,Comparable<AuditLogEntityType>
,Constable
Determines the type of entity which was changed during the audit action
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates a configuration change to an application, application creation or application deletionIndicates a change to Crowd configurationIndicates a configuration change to a directory, directory creation or directory deletionIndicates creation, modification, or deletion of a groupIndicates another type of change, ie made by a custom integrationIndicates a restore of Crowd configuration from backupIndicates creation, modification, or deletion of a user -
Method Summary
Modifier and TypeMethodDescriptionstatic AuditLogEntityType
Returns the enum constant of this class with the specified name.static AuditLogEntityType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
APPLICATION
Indicates a configuration change to an application, application creation or application deletion -
DIRECTORY
Indicates a configuration change to a directory, directory creation or directory deletion -
USER
Indicates creation, modification, or deletion of a user -
GROUP
Indicates creation, modification, or deletion of a group -
CONFIGURATION
Indicates a change to Crowd configuration -
RESTORE
Indicates a restore of Crowd configuration from backup -
OTHER
Indicates another type of change, ie made by a custom integration
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-