2 * Copyright (C) 2015 Roland Haeder
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.jcoreee.validator;
19 import java.text.MessageFormat;
20 import javax.faces.application.FacesMessage;
21 import javax.faces.component.UIComponent;
22 import javax.faces.context.FacesContext;
23 import javax.faces.validator.Validator;
24 import javax.faces.validator.ValidatorException;
25 import org.mxchange.jcoreee.BaseEeSystem;
28 * A general object validation class. Please implement
29 * javax.faces.validator.Validator (with import line!) and call preValidate().
30 * You also may want to try out some other BaseFooValidator classes before
31 * directly inheriting from this class.
33 * @author Roland Haeder<roland@mxchange.org>
35 public abstract class BaseObjectValidator extends BaseEeSystem implements Validator {
40 private static final long serialVersionUID = 48_574_878_176_939_512L;
43 * Needs to be implemented as the Validator interface needs to be
49 * @throws ValidatorException
52 abstract public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException;
55 * The method pre-validates the given value. It makes sure that the
56 * component's id is found in requiredFields and is not null. Once the
57 * component's id has been found, it stops iteration on requiredFields
58 * (which saves execution time).
60 * @param context FacesContext instance
61 * @param component UIComponent instance
62 * @param value Value to check
63 * @param requiredFields Array of required field names (ending with)
64 * @throws ValidatorException If something more horrible went wrong
66 protected void preValidate (final FacesContext context, final UIComponent component, final Object value, final String[] requiredFields) throws ValidatorException {
68 //this.getLogger().logTrace(MessageFormat.format("preValidate: context={0},component={1},value={2},requiredFields={3} - CALLED!", context, component, value, Arrays.toString(requiredFields))); //NOI18N
70 // Init message and key
71 FacesMessage facesMessage = null;
72 String errKey = "ERROR_UNKNOWN_ID"; //NOI18N
75 final String clientId = component.getClientId();
77 // Default is no field is valid
78 boolean isValidField = false;
80 // Check component's id against required fields and find a match
81 for (final String field : requiredFields) {
83 //this.getLogger().logDebug(MessageFormat.format("preValidate: field={0},clientId={1}", field, clientId)); //NOI18N
86 if (clientId.endsWith(field)) {
93 errKey = String.format("ERROR_%s_IS_NULL", field.toUpperCase()); //NOI18N
96 facesMessage = new FacesMessage(this.getMessageStringFromKey(errKey));
105 //this.getLogger().logDebug(MessageFormat.format("preValidate: isValidField={0}", isValidField)); //NOI18N
109 facesMessage = new FacesMessage(MessageFormat.format(this.getMessageStringFromKey(errKey), clientId));
113 //this.getLogger().logDebug(MessageFormat.format("preValidate: facesMessage={0}", facesMessage)); //NOI18N
115 if (null != facesMessage) {
116 throw new ValidatorException(facesMessage);
120 //this.getLogger().logTrace("preValidate: EXIT!"); //NOI18N