public class StellaAcceptAnyValidator implements ConstraintValidator<AcceptAny, String> {
private AcceptAnyValidator stellaValidator;
public void initialize(AcceptAny annotation) {
AnnotationMessageProducer messageProducer = new AnnotationMessageProducer(annotation);
stellaValidator = new AcceptAnyValidator(messageProducer, annotation.formatted(), annotation.documentos());
}