|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Target(value={METHOD,TYPE}) @Retention(value=RUNTIME) public @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 |
@CustomValidator(type ="customValidatorName", fieldName = "myField")
Required Element Summary | |
---|---|
String |
type
|
Optional Element Summary | |
---|---|
String |
fieldName
The optional fieldName for SIMPLE validator types. |
String |
key
|
String |
message
The default error message for this validator. |
String[] |
messageParams
Additional params to be used to customize message - will be evaluated against the Value Stack |
ValidationParameter[] |
parameters
|
boolean |
shortCircuit
|
Element Detail |
---|
public abstract String type
public abstract String fieldName
public abstract String message
public abstract String key
public abstract String[] messageParams
public abstract ValidationParameter[] parameters
public abstract boolean shortCircuit
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |