2 * Copyright (C) 2016 - 2022 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.jfinancials.validator.privacy_terms;
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.bool.BaseBooleanValidator;
26 * A validator for privacy and terms check boxes
28 * @author Roland Häder<roland@mxchange.org>
30 @FacesValidator ("PrivacyTermsCheckboxValidator")
31 public class FinancialsPrivacyTermsCheckboxValidator extends BaseBooleanValidator {
36 private static final long serialVersionUID = 49_241_787_855_847_581L;
39 public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
40 // All accepted, required fields
41 final String[] requiredFields = {"privacy", "terms"}; //NOI18N
43 // Pre-validation (example: not null, not a string, empty string ...)
44 super.preValidate(context, component, value, requiredFields, false);