Package io.dropwizard.validation
Annotation Interface MinDataSize
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER,TYPE_USE})
@Retention(RUNTIME)
@Documented
@Constraint(validatedBy=MinDataSizeValidator.class)
public @interface MinDataSize
The annotated element must be a
DataSize
whose value must be higher or equal to the specified minimum.
null
elements are considered valid- Since:
- 2.0
-
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 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
DataSizeUnit unitThe unit of the annotation.- Returns:
- unit of the value the element must be higher or equal to
- Default:
- BYTES
-