Package io.dropwizard.validation
Annotation Type 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 aDurationwhose value must be higher or equal to the specified minimum.
nullelements are considered valid
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description longvalueThe annotation's value.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description Class<?>[]groupsThe groups the constraint belongs to.booleaninclusiveIf the boundary value is inclusive or not.StringmessageThe validation message for this constraint.Class<? extends jakarta.validation.Payload>[]payloadThe payloads of this constraint.TimeUnitunitThe unit of the annotation.
-
-
-
-
message
String message
The validation message for this constraint.- Returns:
- the message
- Default:
- "must be greater than ${inclusive == true ? \'or equal to \' : \'\'}{value} {unit}"
-
-
-
groups
Class<?>[] groups
The groups the constraint belongs to.- Returns:
- an array of classes representing the groups
- Default:
- {}
-
-
-
payload
Class<? extends jakarta.validation.Payload>[] payload
The payloads of this constraint.- Returns:
- the array of payload classes
- Default:
- {}
-
-
-
unit
TimeUnit unit
The unit of the annotation.- Returns:
- unit of the value the element must be higher or equal to
- Default:
- java.util.concurrent.TimeUnit.SECONDS
-
-
-
inclusive
boolean inclusive
If the boundary value is inclusive or not.- Returns:
trueif the validation is to allow values equal tovalue(). False if the validation is to be exclusive. Defaults totrue.
- Default:
- true
-
-