All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.anteros.bean.validation.constraints.ELAssert Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package br.com.anteros.bean.validation.constraints;


import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
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;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import br.com.anteros.bean.validation.constraints.validators.ELAssertValidator;
import br.com.anteros.validation.api.Constraint;
import br.com.anteros.validation.api.Payload;

@Target({METHOD, FIELD, ANNOTATION_TYPE, PARAMETER, TYPE})
@Retention(RUNTIME)
@Constraint(validatedBy = {ELAssertValidator.class })
@Documented
public @interface ELAssert {

	String message() default "{br.com.anteros.bean.validation.constraints.ELAssert.message}";

	Class[] groups() default { };

	Class[] payload() default { };

	String expression();

	String alias() default "_this";

	@Target({ TYPE })
	@Retention(RUNTIME)
	@Documented
	public @interface List {
		ELAssert[] value();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy