From: Roland Haeder Date: Wed, 14 Oct 2015 10:48:30 +0000 (+0200) Subject: added validator for user profile visibility selection X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d784f443136b60bc6046e381d0ece6c056ca16e1;p=addressbook-lib.git added validator for user profile visibility selection Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java new file mode 100644 index 0000000..cac5ef4 --- /dev/null +++ b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java @@ -0,0 +1,54 @@ +/* + * Copyright (C) 2015 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.addressbook.validator.booleans; + +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 user profile visibility + *

+ * @author Roland Haeder + */ +@FacesValidator (value = "UserProfileVisibilityValidator") +public class UserProfileVisibilityValidator extends BaseBooleanValidator implements Validator { + + /** + * Serial number + */ + private static final long serialVersionUID = 185_768_717_676_910_450L; + + @Override + public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException { + // Trace message + //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N + + // All accepted, required fields + String[] requiredFileds = {"publicUserProfileFlag"}; //NOI18N + + // Pre-validation (example: not null, not a string, empty string ...) + super.preValidate(context, component, value, requiredFileds, false); + + // Trace message + //this.getLogger().logTrace("validate: EXIT!"); //NOI18N + } + +}