]> git.mxchange.org Git - addressbook-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sun, 20 Aug 2017 19:49:49 +0000 (21:49 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 20 Aug 2017 20:01:32 +0000 (22:01 +0200)
- throwing a ConverterException in a validator is wrong, maybe copy-paste did it?
- added TODO for getting rid of wrong constructor in birthday validator
- renamed variable

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/addressbook/validator/birthday/AddressbookBirthdayValidator.java
src/java/org/mxchange/addressbook/validator/emailaddress/AddressbookEmailAddressValidator.java
src/java/org/mxchange/addressbook/validator/phone/abroad/AddressbookAbroadDialValidator.java

index abb00df56f1357533f1c6864fb9c66a0ff4aece7..b37dc742f6c8a45cdc9d7641bf03eeedaab273e7 100644 (file)
@@ -44,6 +44,7 @@ public class AddressbookBirthdayValidator extends BaseDateValidator implements V
 
        /**
         * Default constructor
+        * @TODO Get rid of this
         */
        public AddressbookBirthdayValidator () {
                // Try to get it
index 6537226eb20e0ea60fd6d13358eef12c9fa52d3c..12f435fad3a2ffaca5e12a17cdf349e7e7d4d95e 100644 (file)
@@ -21,7 +21,6 @@ import java.util.regex.Pattern;
 import javax.faces.application.FacesMessage;
 import javax.faces.component.UIComponent;
 import javax.faces.context.FacesContext;
-import javax.faces.convert.ConverterException;
 import javax.faces.validator.FacesValidator;
 import javax.faces.validator.Validator;
 import javax.faces.validator.ValidatorException;
@@ -131,7 +130,7 @@ public class AddressbookEmailAddressValidator extends BaseStringValidator implem
                                AddressbookEmailAddressValidator.CONTACT_BEAN = (ContactSessionBeanRemote) initialContext.lookup("java:global/addressbook-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
                        } catch (final NamingException ex) {
                                // Continue to throw it
-                               throw new ConverterException(MessageFormat.format("initialContext.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
+                               throw new ValidatorException(new FacesMessage(MessageFormat.format("initialContext.lookup() failed: {0}", ex.getMessage())), ex); //NOI18N
                        }
                }
 
index 1faf2d98f17da9ee905629295ed511d49b090480..a5d2b82eb4266a4765577c25ae854ed4e8b81a39 100644 (file)
@@ -47,14 +47,14 @@ public class AddressbookAbroadDialValidator extends BaseObjectValidator implemen
                super.preValidate(context, component, value, requiredFields, true);
 
                // Parse value as string first
-               String dial = String.valueOf(value);
+               String dialNumber = String.valueOf(value);
 
                // Is it not +?
-               if (!dial.equals("+")) { //NOI18N
+               if (!dialNumber.equals("+")) { //NOI18N
                        // No, then try to ...
                        try {
                                // ..parse as number
-                               Long number = Long.parseLong(dial);
+                               Long number = Long.parseLong(dialNumber);
 
                                // Not valid range? (1 - 99, very rude)
                                if (number < 1 || number > 99) {