public class EANValidator extends Object implements ConstraintValidator<EAN,CharSequence>
Constructor and Description |
---|
EANValidator() |
Modifier and Type | Method and Description |
---|---|
void |
initialize(EAN constraintAnnotation)
Initializes the validator in preparation for
ConstraintValidator.isValid(Object, ConstraintValidatorContext) calls. |
boolean |
isValid(CharSequence value,
ConstraintValidatorContext context)
Implements the validation logic.
|
public void initialize(EAN constraintAnnotation)
ConstraintValidator
ConstraintValidator.isValid(Object, ConstraintValidatorContext)
calls.
The constraint annotation for a given constraint declaration
is passed.
This method is guaranteed to be called before any use of this instance for validation.
The default implementation is a no-op.
initialize
in interface ConstraintValidator<EAN,CharSequence>
constraintAnnotation
- annotation instance for a given constraint declarationpublic boolean isValid(CharSequence value, ConstraintValidatorContext context)
ConstraintValidator
value
must not be altered.
This method can be accessed concurrently, thread-safety must be ensured by the implementation.
isValid
in interface ConstraintValidator<EAN,CharSequence>
value
- object to validatecontext
- context in which the constraint is evaluatedfalse
if value
does not pass the constraintCopyright © 2021 JBoss by Red Hat. All rights reserved.