public class PastValidatorForCalendar extends Object implements ConstraintValidator<Past,Calendar>
java.util.Calendar
passed to be validated is in the
past.Constructor and Description |
---|
PastValidatorForCalendar() |
Modifier and Type | Method and Description |
---|---|
void |
initialize(Past constraintAnnotation)
Initialize the validator in preparation for isValid calls.
|
boolean |
isValid(Calendar cal,
ConstraintValidatorContext constraintValidatorContext)
Implement the validation logic.
|
public void initialize(Past constraintAnnotation)
ConstraintValidator
initialize
in interface ConstraintValidator<Past,Calendar>
constraintAnnotation
- annotation instance for a given constraint declarationpublic boolean isValid(Calendar cal, ConstraintValidatorContext constraintValidatorContext)
ConstraintValidator
value
must not be altered.
This method can be accessed concurrently, thread-safety must be ensured
by the implementation.isValid
in interface ConstraintValidator<Past,Calendar>
cal
- object to validateconstraintValidatorContext
- context in which the constraint is evaluatedvalue
does not pass the constraintCopyright © 2018 JBoss by Red Hat. All rights reserved.