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

org.hibernate.validator.testutil.CountValidationCalls Maven / Gradle / Ivy

There is a newer version: 5.4.3.Final
Show newest version
/*
 * 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[] payload() default { };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy