![JAR search and dependency download from the Maven repository](/logo.png)
org.biins.validation.collection.constraints.ElementsLength Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of collection-validation Show documentation
Show all versions of collection-validation Show documentation
Support of JSR-303 validation for collection elements
The newest version!
package org.biins.validation.collection.constraints;
import org.biins.validation.collection.constraints.impl.ElementsLengthValidator;
import org.hibernate.validator.constraints.Length;
import javax.validation.Constraint;
import javax.validation.Payload;
import java.lang.annotation.*;
/**
* @see Length
*
* @author Martin Janys
*/
@Documented
@Constraint(validatedBy = ElementsLengthValidator.class)
@Target({
ElementType.METHOD,
ElementType.FIELD
})
@Retention(RetentionPolicy.RUNTIME)
@ElementsValidator
public @interface ElementsLength {
Length value();
Class> element() default String.class;
String message() default "{validation.collection.constraints.ElementsLength.message}";
Class>[] groups() default {};
Class extends Payload>[] payload() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy