Package de.xima.fc.workflow.error
Enum EFcLdapQueryError
- java.lang.Object
- 
- java.lang.Enum<EFcLdapQueryError>
- 
- de.xima.fc.workflow.error.EFcLdapQueryError
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<EFcLdapQueryError>
 
 public enum EFcLdapQueryError extends Enum<EFcLdapQueryError> Enumeration of the possible error codes for theEWorkflowNodeType.FC_LDAP_QUERYaction.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description INVALID_SEARCH_FILTERWhen the LDAP search filter is syntactically invalid.LDAP_CONNECTION_NOT_FOUNDWhen the LDAP connection details were not found, usually because the entity was already deleted in the FORMCYCLE backend.LDAP_QUERY_NOT_FOUNDWhen the LDAP query were not found, usually because the entity was already deleted in the FORMCYCLE backend.QUERY_EXECUTION_FAILEDWhen the LDAP query could not be executed against the LDAP system.UNABLE_TO_CONNECTWhen the connection to the LDAP system could not be established, e.g.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static EFcLdapQueryErrorvalueOf(String name)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 Detail- 
INVALID_SEARCH_FILTERpublic static final EFcLdapQueryError INVALID_SEARCH_FILTER When the LDAP search filter is syntactically invalid.
 - 
LDAP_CONNECTION_NOT_FOUNDpublic static final EFcLdapQueryError 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_FOUNDpublic static final EFcLdapQueryError LDAP_QUERY_NOT_FOUND When the LDAP query were not found, usually because the entity was already deleted in the FORMCYCLE backend.
 - 
QUERY_EXECUTION_FAILEDpublic static final EFcLdapQueryError QUERY_EXECUTION_FAILED When the LDAP query could not be executed against the LDAP system.
 - 
UNABLE_TO_CONNECTpublic static final EFcLdapQueryError 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 Detail- 
valuespublic static EFcLdapQueryError[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EFcLdapQueryError c : EFcLdapQueryError.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static EFcLdapQueryError valueOf(String name) 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-