]> git.mxchange.org Git - jcore-utils.git/blob - src/org/mxchange/jcoreee/validator/date/BaseDateValidator.java
Updated copyright, changes in 2018 did take happen ...
[jcore-utils.git] / src / org / mxchange / jcoreee / validator / date / BaseDateValidator.java
1 /*
2  * Copyright (C) 2016 - 2018 Free Software Foundation
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.date;
18
19 import java.text.MessageFormat;
20 import java.util.Date;
21 import javax.faces.application.FacesMessage;
22 import javax.faces.component.UIComponent;
23 import javax.faces.context.FacesContext;
24 import javax.faces.validator.ValidatorException;
25 import org.mxchange.jcoreee.validator.BaseObjectValidator;
26
27 /**
28  * A generic validator class for dates
29  * <p>
30  * @author Roland Häder<roland@mxchange.org>
31  */
32 public abstract class BaseDateValidator extends BaseObjectValidator<Object> {
33
34         /**
35          * Serial number
36          */
37         private static final long serialVersionUID = 57_341_298_601_276L;
38
39         @Override
40         public void preValidate (final FacesContext context, final UIComponent component, final Object value, final String[] requiredFields, Boolean allowNull) throws ValidatorException {
41                 // Trace message
42                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("preValidate: context={0},component={1},value={2},requiredFields={3} - CALLED!", context, component, value, Arrays.toString(requiredFields))); //NOI18N
43
44                 // Pre-validate
45                 super.preValidate(context, component, value, requiredFields, allowNull);
46
47                 // Get client id and init message + key
48                 String clientId = component.getClientId();
49                 String requiredMessage = null;
50
51                 // So far all fine, no check if the field is fine
52                 for (final String field : requiredFields) {
53                         // Debug message
54                         //this.getLogger().logDebug(MessageFormat.format("preValidate: field={0},clientId={1}", field, clientId)); //NOI18N
55
56                         // Is it the same?
57                         if (clientId.endsWith(field)) {
58                                 // Compare value's type
59                                 if (!(value instanceof Date)) {
60                                         // Generate message
61                                         requiredMessage = MessageFormat.format("Field {0} is not Date: {1}", field, value); //NOI18N
62
63                                         // Value is not right type
64                                         break;
65                                 }
66
67                                 // Cast to date
68                                 Date date = (Date) value;
69
70                                 // @TODO Continue here?
71                         }
72                 }
73
74                 // Is facesMessage set?
75                 if (null != requiredMessage) {
76                         // Abort here
77                         throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR, requiredMessage, requiredMessage));
78                 }
79         }
80
81 }