1 //$Id: Size.java,v 1.1 2005/05/27 08:58:54 epbernard Exp $2 package org.hibernate.validator;3 4 import static java.lang.annotation.ElementType.METHOD ;5 import static java.lang.annotation.RetentionPolicy.RUNTIME ;6 7 import java.lang.annotation.Retention ;8 import java.lang.annotation.Target ;9 10 /**11 * Size range for Arrays, Collections or Maps12 * 13 * @author Gavin King14 */15 @ValidatorClass(SizeValidator.class)16 @Target (METHOD) @Retention (RUNTIME)17 public @interface Size {18 int max() default Integer.MAX_VALUE;19 int min() default 0;20 String message() default "size must be between {min} and {max}";21 }22