]> git.mxchange.org Git - jfinancials-war.git/blob - src/java/org/mxchange/jfinancials/validator/phone/number/FinancialsPhoneNumberValidator.java
Updated copyright year
[jfinancials-war.git] / src / java / org / mxchange / jfinancials / validator / phone / number / FinancialsPhoneNumberValidator.java
1 /*
2  * Copyright (C) 2016 - 2022 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.jfinancials.validator.phone.number;
18
19 import javax.faces.component.UIComponent;
20 import javax.faces.context.FacesContext;
21 import javax.faces.validator.FacesValidator;
22 import javax.faces.validator.ValidatorException;
23 import org.mxchange.jcoreee.validator.number.BaseNumberValidator;
24
25 /**
26  * A validator for phone, fax and mobile numbers
27  * <p>
28  * @author Roland Häder<roland@mxchange.org>
29  */
30 @FacesValidator ("PhoneNumberValidator")
31 public class FinancialsPhoneNumberValidator extends BaseNumberValidator {
32
33         /**
34          * Serial number
35          */
36         private static final long serialVersionUID = 186_897_817_692_786_900L;
37
38         @Override
39         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
40                 // The required field
41                 final String[] requiredFields = {"landLineAreaCode", "landLineNumber", "faxAreaCode", "faxNumber", "mobileNumber"}; //NOI18N
42
43                 // Pre-validation (example: not null, not a string, empty string ...)
44                 super.preValidate(context, component, value, requiredFields, true);
45         }
46
47 }