Package com.atlassian.crowd.validator
Enum Class DirectoryValidationContext
- All Implemented Interfaces:
Serializable
,Comparable<DirectoryValidationContext>
,Constable
Represents a subset of context that should be used for Directory Validation
- Since:
- 3.2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionContext representing that attributes related to connection must be validatedContext representing that attributes related to connector must be validatedContext representing that all relevant attributes must be validatedContext representing that attributes related to group configuration of LDAP must be validatedContext representing that attributes related to group search test in LDAP must be validatedContext representing attributes related to synchronisation schedulingContext representing that attributes related to user configuration of LDAP must be validatedContext representing that attributes related to user search test in LDAP must be validated -
Method Summary
Modifier and TypeMethodDescriptionstatic DirectoryValidationContext
Returns the enum constant of this class with the specified name.static DirectoryValidationContext[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Context representing that all relevant attributes must be validated -
CONNECTION
Context representing that attributes related to connection must be validated -
CONNECTOR_ATTRIBUTES
Context representing that attributes related to connector must be validated -
USER_CONFIGURATION
Context representing that attributes related to user configuration of LDAP must be validated -
GROUP_CONFIGURATION
Context representing that attributes related to group configuration of LDAP must be validated -
USER_SEARCH
Context representing that attributes related to user search test in LDAP must be validated -
GROUP_SEARCH
Context representing that attributes related to group search test in LDAP must be validated -
SYNCHRONISATION_SCHEDULING
Context representing attributes related to synchronisation scheduling
-
-
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
-