Annotation Type IsValidationDriver
-
@Documented @Target(TYPE) public @interface IsValidationDriver
Marks a editor validation driver interface as being usable and causes a generated implementation of it to be created, with required supporting classes.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description CheckTimeEnumcheckTimetime of validation check.Class<?>[]groupsThe list of Groups which can be processed by the annotatedValidator.booleansubmitOnReturnsubmit form on return press.booleansubmitOnValueChangesubmit form on value change.booleansubmitUnchangedsubmit unchanged forms.
-
-
-
Element Detail
-
groups
Class<?>[] groups
The list of Groups which can be processed by the annotatedValidator. The default value isDefault. An empty array is illegal.- Returns:
- array of classes
- Default:
- {javax.validation.groups.Default.class}
-
-
-
checkTime
CheckTimeEnum checkTime
time of validation check.- Returns:
- CheckTimeEnum
- Default:
- de.knightsoftnet.validators.client.editor.CheckTimeEnum.ON_KEY_UP
-
-