Package io.dropwizard.validation
Annotation Interface MinDuration
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE})
@Retention(RUNTIME)
@Documented
@Constraint(validatedBy=MinDurationValidator.class)
public @interface MinDuration
The annotated element must be a
Duration
whose value must be higher or equal to the specified minimum.
null
elements are considered valid-
Required Element Summary
Required Elements -
Optional Element Summary
Optional Elements
-
Element Details
-
value
long valueThe annotation's value.- Returns:
- value the element must be higher or equal to
-
-
-
message
String messageThe validation message for this constraint.- Returns:
- the message
- Default:
- "must be greater than ${inclusive == true ? \'or equal to \' : \'\'}{value} {unit}"
-
groups
Class<?>[] groupsThe groups the constraint belongs to.- Returns:
- an array of classes representing the groups
- Default:
- {}
-
payload
Class<? extends jakarta.validation.Payload>[] payloadThe payloads of this constraint.- Returns:
- the array of payload classes
- Default:
- {}
-
unit
TimeUnit unitThe unit of the annotation.- Returns:
- unit of the value the element must be higher or equal to
- Default:
- SECONDS
-
inclusive
boolean inclusiveIf the boundary value is inclusive or not.- Returns:
true
if the validation is to allow values equal tovalue()
. False if the validation is to be exclusive. Defaults totrue
.
- Default:
- true
-