]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
TODO now to use JSF tag with regex
authorRoland Häder <roland@mxchange.org>
Wed, 19 Apr 2017 23:31:48 +0000 (01:31 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 19 Apr 2017 23:31:48 +0000 (01:31 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/pizzaapplication/validator/emailaddress/PizzaEmailAddressValidator.java

index ef85fe6dfb02daaf3fc1ba4dd12f47a61ddc8f66..e3ce71a607ece14b93a71e39e840112f378e4d4f 100644 (file)
@@ -81,7 +81,8 @@ public class PizzaEmailAddressValidator extends BaseStringValidator implements V
                // @TODO Add IDN support (GNU lib?) Search for emailAddressRepeat
                String emailAddress = String.valueOf(value);
 
-               // Checks if the email address matches a regex ("low-level" check, should also be done by <f:validatorRegex />)
+               // Checks if the email address matches a regex ("low-level" check)
+               // @TODO Should also be done by <f:validatorRegex />)
                boolean matches = Pattern.matches("^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$", emailAddress); //NOI18N
 
                // Is the email address valid?