I would like to know if there is any way to execute the validators in an OR operator way insted of AND. Currently if the first fails, he doesn't run the other two, however I need him to run them all to return to the user all the respective fixes that he should apply to the file.
I have something like:
@Validate(nullable = false, validators = { NumericValidator.class, LengthValidator.class, DataValidator.class })
I don't create a single validation since I would like to create general validations and just call the specific depending on the field.
Thanks in advance.