2 * Copyright (C) 2016 - 2020 Free Software Foundation
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.pizzaapplication.validator.birthday;
19 import java.util.Date;
20 import javax.faces.component.UIComponent;
21 import javax.faces.context.FacesContext;
22 import javax.faces.validator.FacesValidator;
23 import javax.faces.validator.ValidatorException;
24 import org.mxchange.jcoreee.validator.date.BaseDateValidator;
27 * A birthday validator
29 * @author Roland Häder<roland@mxchange.org>
31 @FacesValidator ("BirthdayValidator")
32 public class PizzaBirthdayValidator extends BaseDateValidator {
37 private static final long serialVersionUID = 28_735_756_819_460L;
40 public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
41 // All accepted, required fields
42 final String[] requiredFields = {"birthday", "contactBirthday"}; //NOI18N
44 // Pre-validation (example: not null, not a string, empty string ...)
45 super.preValidate(context, component, value, requiredFields, false);
48 final Date birthday = (Date) value;
50 // @TODO Finish this, e.g. load maximum,minimum birthday from properties file