From 8442f1a4e4e60f4563da020c84a93fc28665b87f Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 25 May 2016 19:50:09 +0200 Subject: [PATCH] added from jphone-core and jcoreee MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../JobsPrivacyTermsCheckboxValidator.java | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/java/org/mxchange/jjobs/validator/bool/privacy_terms/JobsPrivacyTermsCheckboxValidator.java diff --git a/src/java/org/mxchange/jjobs/validator/bool/privacy_terms/JobsPrivacyTermsCheckboxValidator.java b/src/java/org/mxchange/jjobs/validator/bool/privacy_terms/JobsPrivacyTermsCheckboxValidator.java new file mode 100644 index 00000000..bab9e6b6 --- /dev/null +++ b/src/java/org/mxchange/jjobs/validator/bool/privacy_terms/JobsPrivacyTermsCheckboxValidator.java @@ -0,0 +1,55 @@ +/* + * Copyright (C) 2016 Roland Haeder + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +package org.mxchange.jjobs.validator.bool.privacy_terms; + +import javax.faces.component.UIComponent; +import javax.faces.context.FacesContext; +import javax.faces.validator.FacesValidator; +import javax.faces.validator.Validator; +import javax.faces.validator.ValidatorException; +import org.mxchange.jcoreee.validator.bool.BaseBooleanValidator; + +/** + * A validator for privacy and terms checkboxes + *

+ * @author Roland Haeder + * @deprecated Please copy this to your project and remove the deprecation annotation + */ +@FacesValidator (value = "PrivacyTermsCheckboxValidator") +@Deprecated +public class JobsPrivacyTermsCheckboxValidator extends BaseBooleanValidator implements Validator { + + /** + * Serial number + */ + private static final long serialVersionUID = 49_241_787_855_847_581L; + + @Override + public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException { + // Trace message + //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N + + // All accepted, required fields + String[] requiredFields = {"privacy", "terms"}; //NOI18N + + // Pre-validation (example: not null, not a string, empty string ...) + super.preValidate(context, component, value, requiredFields, false); + + // Trace message + //* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N + } +} -- 2.39.5