org.hibernate.validator.testutil.CountValidationCalls Maven / Gradle / Ivy
/*
* Hibernate Validator, declare and validate application constraints
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or .
*/
package org.hibernate.validator.testutil;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import javax.validation.Constraint;
import javax.validation.Payload;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* @author Kevin Pollet <[email protected]> (C) 2011 SERLI
*/
@Target( { METHOD, FIELD })
@Retention(RUNTIME)
@Constraint(validatedBy = CountValidationCallsValidator.class)
public @interface CountValidationCalls {
String message() default "";
Class>[] groups() default { };
Class extends Payload>[] payload() default { };
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy