]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/validator/birthday/JobsBirthdayValidator.java
209e7150e1f56aa176979b2a73284cb0a447a4f2
[jjobs-war.git] / src / java / org / mxchange / jjobs / validator / birthday / JobsBirthdayValidator.java
1 /*
2  * Copyright (C) 2016 Roland Häder
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.jjobs.validator.birthday;
18
19 import java.text.MessageFormat;
20 import java.util.Date;
21 import javax.faces.component.UIComponent;
22 import javax.faces.context.FacesContext;
23 import javax.faces.convert.ConverterException;
24 import javax.faces.validator.FacesValidator;
25 import javax.faces.validator.Validator;
26 import javax.faces.validator.ValidatorException;
27 import javax.naming.Context;
28 import javax.naming.InitialContext;
29 import javax.naming.NamingException;
30 import org.mxchange.jcoreee.validator.date.BaseDateValidator;
31
32 /**
33  * A birthday validator
34  * <p>
35  * @author Roland Häder<roland@mxchange.org>
36  */
37 @FacesValidator ("BirthdayValidator")
38 public class JobsBirthdayValidator extends BaseDateValidator implements Validator {
39
40         /**
41          * Serial number
42          */
43         private static final long serialVersionUID = 28_735_756_819_460L;
44
45         /**
46          * Default constructor
47          */
48         public JobsBirthdayValidator () {
49                 // Try to get it
50                 try {
51                         // Get initial context
52                         Context context = new InitialContext();
53                 } catch (final NamingException ex) {
54                         // Continue to throw it
55                         throw new ConverterException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
56                 }
57         }
58
59         @Override
60         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
61                 // All accepted, required fields
62                 String[] requiredFields = {"birthday", "contactBirthday"}; //NOI18N
63
64                 // Pre-validation (example: not null, not a string, empty string ...)
65                 super.preValidate(context, component, value, requiredFields, false);
66
67                 // Cast value
68                 Date birthday = (Date) value;
69
70                 // @TODO Finish this, e.g. load maximum,minimum birthday from properties file
71         }
72
73 }