]> git.mxchange.org Git - jcore-utils.git/blob - src/org/mxchange/jcoreee/validator/BaseObjectValidator.java
BaseEeSystem is now centralized and serializable
[jcore-utils.git] / src / org / mxchange / jcoreee / validator / BaseObjectValidator.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
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.
8  *
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.
13  *
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/>.
16  */
17 package org.mxchange.jcoreee.validator;
18
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;
26
27 /**
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.
32  *
33  * @author Roland Haeder<roland@mxchange.org>
34  */
35 public abstract class BaseObjectValidator extends BaseEeSystem implements Validator {
36
37         /**
38          * Serial number
39          */
40         private static final long serialVersionUID = 48_574_878_176_939_512L;
41
42         /**
43          * Needs to be implemented as the Validator interface needs to be
44          * implemented.
45          *
46          * @param context
47          * @param component
48          * @param value
49          * @throws ValidatorException
50          */
51         @Override
52         abstract public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException;
53
54         /**
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).
59          *
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
65          */
66         protected void preValidate (final FacesContext context, final UIComponent component, final Object value, final String[] requiredFields) throws ValidatorException {
67                 // Trace message
68                 //this.getLogger().logTrace(MessageFormat.format("preValidate: context={0},component={1},value={2},requiredFields={3} - CALLED!", context, component, value, Arrays.toString(requiredFields))); //NOI18N
69
70                 // Init message and key
71                 FacesMessage facesMessage = null;
72                 String errKey = "error.unknown_id"; //NOI18N
73
74                 // Get client id
75                 final String clientId = component.getClientId();
76
77                 // Default is no field is valid
78                 boolean isValidField = false;
79
80                 // Check component's id against required fields and find a match
81                 for (final String field : requiredFields) {
82                         // Get logger
83                         //this.getLogger().logDebug(MessageFormat.format("preValidate: field={0},clientId={1}", field, clientId)); //NOI18N
84
85                         // Is it the same?
86                         if (clientId.endsWith(field)) {
87                                 // Is valid field
88                                 isValidField = true;
89
90                                 // Is it null?
91                                 if (null == value) {
92                                         // Generate message
93                                         errKey = String.format("ERROR_%s_IS_NULL", field.toUpperCase()); //NOI18N
94
95                                         // Value it null
96                                         facesMessage = new FacesMessage(getMessageStringFromKey(errKey));
97                                 }
98
99                                 // Abort here
100                                 break;
101                         }
102                 }
103
104                 // Debug message
105                 //this.getLogger().logDebug(MessageFormat.format("preValidate: isValidField={0}", isValidField)); //NOI18N
106                 // Valid field?
107                 if (!isValidField) {
108                         // Invalid field
109                         facesMessage = new FacesMessage(MessageFormat.format(errKey, clientId));
110                 }
111
112                 // Debug message
113                 //this.getLogger().logDebug(MessageFormat.format("preValidate: facesMessage={0}", facesMessage)); //NOI18N
114                 // Is it not null?
115                 if (null != facesMessage) {
116                         throw new ValidatorException(facesMessage);
117                 }
118
119                 // Trace message
120                 //this.getLogger().logTrace("preValidate: EXIT!"); //NOI18N
121         }
122 }