Annotation Interface CustomValidator
 This annotation can be used for custom validators. Use the ValidationParameter annotation to supply additional params.
 
 
 
 
 
Annotation usage:
The annotation must be applied at method or type level.
Annotation parameters:
| Parameter | Required | Default | Notes | 
|---|---|---|---|
| message | yes | field error message | |
| key | no | i18n key from language specific properties file. | |
| messageParams | no | Additional params to be used to customize message - will be evaluated against the Value Stack | |
| fieldName | no | ||
| shortCircuit | no | false | If this validator should be used as shortCircuit. | 
| type | yes | name of validator | Simple string which identifies that validator among other | 
Example code:
@CustomValidator(type ="customValidatorName", fieldName = "myField")
- Author:
- jepjep, Rainer Hermanns
- 
Required Element SummaryRequired Elements
- 
Optional Element SummaryOptional Elements
- 
Element Details- 
typeString type
 
- 
- 
- 
fieldNameString fieldName- Returns:
- The optional fieldName for SIMPLE validator types.
 - Default:
- ""
 
- 
messageString message- Returns:
- The default error message for this validator. NOTE: It is required to set a message, if you are not using the message key for 18n lookup!
 - Default:
- ""
 
- 
keyString key- Default:
- ""
 
- 
messageParamsString[] messageParams- Returns:
- Additional params to be used to customize message - will be evaluated against the Value Stack
 - Default:
- {}
 
- 
parametersValidationParameter[] parameters- Default:
- {}
 
- 
shortCircuitboolean shortCircuit- Default:
- false
 
 
-