/* * Hibernate Validator, declare and validate application constraints * * License: Apache License, Version 2.0 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>. */ package org.hibernate.validator.constraints.time; import static java.lang.annotation.ElementType.ANNOTATION_TYPE; import static java.lang.annotation.ElementType.CONSTRUCTOR; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.annotation.ElementType.TYPE_USE; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Documented; import java.lang.annotation.Repeatable; import java.lang.annotation.Retention; import java.lang.annotation.Target; import java.time.Duration; import javax.validation.Constraint; import javax.validation.Payload; import javax.validation.ReportAsSingleViolation; import org.hibernate.validator.Incubating; import org.hibernate.validator.constraints.time.DurationMin.List; /** * The annotated {@link Duration} element must be longer than or equal to the one constructed as a sum of * {@link DurationMin#nanos()}, {@link DurationMin#millis()}, {@link DurationMin#seconds()}, * {@link DurationMin#minutes()}, {@link DurationMin#hours()}, {@link DurationMin#days()}. * * @author Marko Bekhta */ @Documented @Constraint(validatedBy = { }) @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE }) @Retention(RUNTIME) @Repeatable(List.class) @ReportAsSingleViolation @Incubating public @interface DurationMin { String message() default "{org.hibernate.validator.constraints.time.DurationMin.message}"; Class<?>[] groups() default { }; Class<? extends Payload>[] payload() default { }; long days() default 0; long hours() default 0; long minutes() default 0; long seconds() default 0; long millis() default 0; long nanos() default 0; /** * Specifies whether the specified minimum is inclusive or exclusive. By default, it is inclusive. * * @return {@code true} if the value must be higher or equal to the specified minimum, * {@code false} if the value must be higher * */ boolean inclusive() default true; /** * Defines several {@code @DurationMin} annotations on the same element. */ @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE }) @Retention(RUNTIME) @Documented @interface List { DurationMin[] value(); } }