Class MappingErrorCodes
- java.lang.Object
-
- com.aquima.interactions.mapping.ds.MappingErrorCodes
-
public final class MappingErrorCodes extends Object
This class defines the various initialization errors that may occur when creating a mapping from data source.- Since:
- 7.1
- Author:
- Jon van Leuven, O. Kerpershoek
-
-
Field Summary
Fields Modifier and Type Field Description static ErrorCode
ATTRIBUTEMAPPING_PROBLEM
Indicates a problem with an attribute mapping.static ErrorCode
ENTITYMAPPING_PROBLEM
Indicates a problem with an entity mapping.static ErrorCode
INVALIDATTRIBUTREMAPPINGCONDITION
This error code is used to indicate that an invalid condition was detected in an attribute mapping.static ErrorCode
INVALIDDATATYPESOURCEMAPPINGEXPRESSION
This error code is used to indicate that an expression for a mapping results in an invalid type.static ErrorCode
INVALIDENTITYMAPPINGCONDITION
This error code is used to indicate that an invalid condition was detected in a mapping.static ErrorCode
INVALIDMATCHCONDITION
This error code is used to indicate that an invalid match condition was detected.static ErrorCode
INVALIDMATCHCONDITION_INVALIDDATATYPE
This error code is used to indicate that an expression for a match condition results in an invalid type.static ErrorCode
INVALIDSOURCEMAPPINGEXPRESSION
This error code is used to indicate that an invalid expression was detected in a mapping.static ErrorCode
INVALIDVALUEMAPPINGCONDITION
This error code is used to indicate that an invalid condition was detected in a value mapping.static ErrorCode
INVALIDVALUEMAPPINGEXPRESSION
This error code is used to indicate that an invalid expression was detected in a value mapping.static ErrorCode
INVALIDVALUEMAPPINGEXPRESSIONDATATYPE
This error code is used to indicate that an expression for a value mapping results in an invalid type.static ErrorCode
MAPPING_DUPLICATION
Indicates that a mapping is overwritten by a duplicate (mapping with the same name) in the internal mapping storage.static ErrorCode
MAPPING_PROBLEM
Indicates a problem with an entity mapping.static ErrorCode
MISSINGSOURCEMAPPING
This error code is used to indicate that a mapping has no source mappings defined.static ErrorCode
MISSINGVALUEMAPPING
This error code is used to indicate that an attribute mapping has no value mappings defined.static ErrorCode
UNKNOWN_ATTRIBUTE
This error code is used to indicate a mapping refers to an unknown attribute.static ErrorCode
UNKNOWN_ENTITY
This error code is used to indicate a mapping refers to an unknown entity.
-
-
-
Field Detail
-
ENTITYMAPPING_PROBLEM
public static final ErrorCode ENTITYMAPPING_PROBLEM
Indicates a problem with an entity mapping.
-
ATTRIBUTEMAPPING_PROBLEM
public static final ErrorCode ATTRIBUTEMAPPING_PROBLEM
Indicates a problem with an attribute mapping.
-
UNKNOWN_ENTITY
public static final ErrorCode UNKNOWN_ENTITY
This error code is used to indicate a mapping refers to an unknown entity.
-
UNKNOWN_ATTRIBUTE
public static final ErrorCode UNKNOWN_ATTRIBUTE
This error code is used to indicate a mapping refers to an unknown attribute.
-
INVALIDVALUEMAPPINGEXPRESSION
public static final ErrorCode INVALIDVALUEMAPPINGEXPRESSION
This error code is used to indicate that an invalid expression was detected in a value mapping.
-
INVALIDVALUEMAPPINGEXPRESSIONDATATYPE
public static final ErrorCode INVALIDVALUEMAPPINGEXPRESSIONDATATYPE
This error code is used to indicate that an expression for a value mapping results in an invalid type.
-
INVALIDVALUEMAPPINGCONDITION
public static final ErrorCode INVALIDVALUEMAPPINGCONDITION
This error code is used to indicate that an invalid condition was detected in a value mapping.
-
INVALIDATTRIBUTREMAPPINGCONDITION
public static final ErrorCode INVALIDATTRIBUTREMAPPINGCONDITION
This error code is used to indicate that an invalid condition was detected in an attribute mapping.
-
INVALIDMATCHCONDITION_INVALIDDATATYPE
public static final ErrorCode INVALIDMATCHCONDITION_INVALIDDATATYPE
This error code is used to indicate that an expression for a match condition results in an invalid type.
-
INVALIDMATCHCONDITION
public static final ErrorCode INVALIDMATCHCONDITION
This error code is used to indicate that an invalid match condition was detected.
-
MISSINGVALUEMAPPING
public static final ErrorCode MISSINGVALUEMAPPING
This error code is used to indicate that an attribute mapping has no value mappings defined.
-
INVALIDENTITYMAPPINGCONDITION
public static final ErrorCode INVALIDENTITYMAPPINGCONDITION
This error code is used to indicate that an invalid condition was detected in a mapping.
-
INVALIDSOURCEMAPPINGEXPRESSION
public static final ErrorCode INVALIDSOURCEMAPPINGEXPRESSION
This error code is used to indicate that an invalid expression was detected in a mapping.
-
INVALIDDATATYPESOURCEMAPPINGEXPRESSION
public static final ErrorCode INVALIDDATATYPESOURCEMAPPINGEXPRESSION
This error code is used to indicate that an expression for a mapping results in an invalid type.
-
MISSINGSOURCEMAPPING
public static final ErrorCode MISSINGSOURCEMAPPING
This error code is used to indicate that a mapping has no source mappings defined.
-
MAPPING_PROBLEM
public static final ErrorCode MAPPING_PROBLEM
Indicates a problem with an entity mapping.
-
MAPPING_DUPLICATION
public static final ErrorCode MAPPING_DUPLICATION
Indicates that a mapping is overwritten by a duplicate (mapping with the same name) in the internal mapping storage.
-
-