]> git.mxchange.org Git - jcore-utils.git/blobdiff - src/org/mxchange/jcoreee/validator/BaseObjectValidator.java
Let's get rid of this class. It was maybe a good idea, but it required a lot work...
[jcore-utils.git] / src / org / mxchange / jcoreee / validator / BaseObjectValidator.java
index 90a98df1186eba2aa36187f2033415da343d1067..fa3d625333a19deb0935349e8536f2ca71a99d3c 100644 (file)
@@ -22,22 +22,26 @@ import javax.faces.component.UIComponent;
 import javax.faces.context.FacesContext;
 import javax.faces.validator.Validator;
 import javax.faces.validator.ValidatorException;
-import org.mxchange.jcoreee.BaseEeSystem;
 
 /**
  * A general object validation class. Please implement
  * javax.faces.validator.Validator (with import line!) and call preValidate().
  * You also may want to try out some other BaseFooValidator classes before
  * directly inheriting from this class.
- *
+ * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
-public abstract class BaseObjectValidator extends BaseEeSystem implements Validator {
+public abstract class BaseObjectValidator implements Validator {
+
+       /**
+        * Serial number
+        */
+       private static final long serialVersionUID = 48_574_878_176_939_512L;
 
        /**
         * Needs to be implemented as the Validator interface needs to be
         * implemented.
-        *
+        * <p>
         * @param context
         * @param component
         * @param value
@@ -51,7 +55,7 @@ public abstract class BaseObjectValidator extends BaseEeSystem implements Valida
         * component's id is found in requiredFields and is not null. Once the
         * component's id has been found, it stops iteration on requiredFields
         * (which saves execution time).
-        *
+        * <p>
         * @param context FacesContext instance
         * @param component UIComponent instance
         * @param value Value to check
@@ -64,7 +68,6 @@ public abstract class BaseObjectValidator extends BaseEeSystem implements Valida
 
                // Init message and key
                FacesMessage facesMessage = null;
-               String errKey = "error.unknown_id"; //NOI18N
 
                // Get client id
                final String clientId = component.getClientId();
@@ -84,11 +87,8 @@ public abstract class BaseObjectValidator extends BaseEeSystem implements Valida
 
                                // Is it null?
                                if (null == value) {
-                                       // Generate message
-                                       errKey = String.format("ERROR_%s_IS_NULL", field.toUpperCase()); //NOI18N
-
                                        // Value it null
-                                       facesMessage = new FacesMessage(getMessageStringFromKey(errKey));
+                                       facesMessage = new FacesMessage(MessageFormat.format("Field {0} is null.", field)); //NOI18N
                                }
 
                                // Abort here
@@ -101,7 +101,7 @@ public abstract class BaseObjectValidator extends BaseEeSystem implements Valida
                // Valid field?
                if (!isValidField) {
                        // Invalid field
-                       facesMessage = new FacesMessage(MessageFormat.format(errKey, clientId));
+                       facesMessage = new FacesMessage(MessageFormat.format("Valure {0} for clientId={1} is not valid/unexpected.", value, clientId)); //NOI18N
                }
 
                // Debug message