]> git.mxchange.org Git - jaddressbook-share-lib.git/blob - src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java
e044289c5dcd2bc6eb8e6bca20c7177ac0198b40
[jaddressbook-share-lib.git] / src / org / mxchange / addressbook / validator / booleans / UserProfileVisibilityValidator.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
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.addressbook.validator.booleans;
18
19 import javax.faces.component.UIComponent;
20 import javax.faces.context.FacesContext;
21 import javax.faces.validator.FacesValidator;
22 import javax.faces.validator.Validator;
23 import javax.faces.validator.ValidatorException;
24 import org.mxchange.jcoreee.validator.bool.BaseBooleanValidator;
25
26 /**
27  * A validator for user profile visibility
28  * <p>
29  * @author Roland Haeder<roland@mxchange.org>
30  */
31 @FacesValidator (value = "UserProfileVisibilityValidator")
32 public class UserProfileVisibilityValidator extends BaseBooleanValidator implements Validator {
33
34         /**
35          * Serial number
36          */
37         private static final long serialVersionUID = 185_768_717_676_910_450L;
38
39         @Override
40         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
41                 // Trace message
42                 //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
43
44                 // All accepted, required fields
45                 String[] requiredFields = {"publicUserProfileFlag"}; //NOI18N
46
47                 // Pre-validation (example: not null, not a string, empty string ...)
48                 super.preValidate(context, component, value, requiredFields, false);
49
50                 // Trace message
51                 //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
52         }
53
54 }