Package de.xima.fc.workflow.error
Enum EFcLdapQueryError
- All Implemented Interfaces:
Serializable
,Comparable<EFcLdapQueryError>
Enumeration of the possible error codes for the
EWorkflowNodeType.FC_LDAP_QUERY
action.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhen the LDAP search filter is syntactically invalid.When the LDAP connection details were not found, usually because the entity was already deleted in the formcycle backend.When the LDAP query were not found, usually because the entity was already deleted in the formcycle backend.When the LDAP query could not be executed against the LDAP system.When the connection to the LDAP system could not be established, e.g. when the URL or the credentials are invalid. -
Method Summary
Modifier and TypeMethodDescriptionstatic EFcLdapQueryError
Returns the enum constant of this type with the specified name.static EFcLdapQueryError[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INVALID_SEARCH_FILTER
When the LDAP search filter is syntactically invalid. -
LDAP_CONNECTION_NOT_FOUND
When the LDAP connection details were not found, usually because the entity was already deleted in the formcycle backend. -
LDAP_QUERY_NOT_FOUND
When the LDAP query were not found, usually because the entity was already deleted in the formcycle backend. -
QUERY_EXECUTION_FAILED
When the LDAP query could not be executed against the LDAP system. -
UNABLE_TO_CONNECT
When the connection to the LDAP system could not be established, e.g. when the URL or the credentials are invalid.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-