Package com.atlassian.crowd.audit.query
Enum Class AuditLogChangesetProjection
java.lang.Object
java.lang.Enum<AuditLogChangesetProjection>
com.atlassian.crowd.audit.query.AuditLogChangesetProjection
- All Implemented Interfaces:
Serializable,Comparable<AuditLogChangesetProjection>,Constable
Allows specifying a projection for an
AuditLogQuery.
When a projection is specified only some fields of the query results will be populated.- Since:
- 3.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOnly populates the author of the changesetsOnly populates changeset entities that are applicationsOnly populates changeset entities that are directoriesOnly populates changeset entities that are groupsOnly populates changeset entities that are usersOnly populates the event type of the changesetsOnly populates the source of the changesets -
Method Summary
Modifier and TypeMethodDescriptionstatic AuditLogChangesetProjectionReturns the enum constant of this class with the specified name.static AuditLogChangesetProjection[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EVENT_TYPE
Only populates the event type of the changesets -
AUTHOR
Only populates the author of the changesets -
ENTITY_USER
Only populates changeset entities that are users -
ENTITY_GROUP
Only populates changeset entities that are groups -
ENTITY_APPLICATION
Only populates changeset entities that are applications -
ENTITY_DIRECTORY
Only populates changeset entities that are directories -
SOURCE
Only populates the source of the changesets
-
-
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
-