package spoon.test.annotation.testclasses; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; 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.TYPE_USE; import static java.lang.annotation.RetentionPolicy.RUNTIME; @Target({ METHOD, FIELD, ANNOTATION_TYPE, TYPE_USE }) @Retention(RUNTIME) @Documented public @interface PortRange { int min() default 1; int max() default 65535; String message() default "{org.hibernate.validator.constraints.Range.message}"; Class<?>[] groups() default {}; Class<?>[] payload() default {}; }