br.com.anteros.bean.validation.constraints.After Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Bean-Validation Show documentation
Show all versions of Anteros-Bean-Validation Show documentation
Anteros Bean Validation for Java.
package br.com.anteros.bean.validation.constraints;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE_USE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import br.com.anteros.bean.validation.constraints.validators.AfterValidator;
import br.com.anteros.validation.api.Constraint;
import br.com.anteros.validation.api.Payload;
@Documented
@Constraint(validatedBy = AfterValidator.class)
@Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE})
@Retention(RUNTIME)
@Repeatable(After.List.class)
public @interface After {
String value();
String message() default "{br.com.anteros.bean.validation.constraints.AFTER.message}";
Class>[] groups() default {};
Class extends Payload>[] payload() default {};
String format() default "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
/**
* Defines several {@code @After} constraints on the same element.
*
* @see After
*/
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE })
@Retention(RUNTIME)
@Documented
public @interface List {
After[] value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy