public class AbstractEmailValidator<A extends Annotation> extends Object implements ConstraintValidator<A,CharSequence>
The specification of a valid email can be found in RFC 2822 and one can come up with a regular expression matching all valid email addresses as per specification. However, as this article discusses it is not necessarily practical to implement a 100% compliant email validator. This implementation is a trade-off trying to match most email while ignoring for example emails with double quotes or comments.
Constructor and Description |
---|
AbstractEmailValidator() |
Modifier and Type | Method and Description |
---|---|
boolean |
isValid(CharSequence value,
ConstraintValidatorContext context) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
initialize
public boolean isValid(CharSequence value, ConstraintValidatorContext context)
isValid
in interface ConstraintValidator<A extends Annotation,CharSequence>
Copyright © 2007-2021 Red Hat, Inc. All Rights Reserved