com.vaadin.v7.data.validator.EmailValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-compatibility-server Show documentation
Show all versions of vaadin-compatibility-server Show documentation
Vaadin 7 compatibility package for Vaadin 8
The newest version!
/*
* Copyright (C) 2000-2024 Vaadin Ltd
*
* This program is available under Vaadin Commercial License and Service Terms.
*
* See for the full
* license.
*/
package com.vaadin.v7.data.validator;
/**
* String validator for e-mail addresses. The e-mail address syntax is not
* complete according to RFC 822 but handles the vast majority of valid e-mail
* addresses correctly.
*
* See {@link AbstractStringValidator} for more information.
*
*
* An empty string or a null is always accepted - use the required flag on
* fields or a separate validator (or override {@link #isValidValue(String)}) to
* fail on empty values.
*
*
* @author Vaadin Ltd.
* @since 5.4
*/
@SuppressWarnings("serial")
@Deprecated
public class EmailValidator extends RegexpValidator {
private static final String PATTERN = "^" + "([a-zA-Z0-9_\\.\\-+])+" // local
+ "@" + "[a-zA-Z0-9-.]+" // domain
+ "\\." + "[a-zA-Z0-9-]{2,}" // tld
+ "$";
/**
* Creates a validator for checking that a string is a syntactically valid
* e-mail address.
*
* @param errorMessage
* the message to display in case the value does not validate.
*/
public EmailValidator(String errorMessage) {
super(PATTERN, true, errorMessage);
}
}