]> git.mxchange.org Git - jaddressbook-share-lib.git/blob - src/org/mxchange/addressbook/validator/user/UserIdValidator.java
moved validator to better location
[jaddressbook-share-lib.git] / src / org / mxchange / addressbook / validator / user / UserIdValidator.java
1 /*
2  * Copyright (C) 2015 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.user;
18
19 import java.text.MessageFormat;
20 import javax.ejb.EJB;
21 import javax.faces.application.FacesMessage;
22 import javax.faces.component.UIComponent;
23 import javax.faces.context.FacesContext;
24 import javax.faces.validator.FacesValidator;
25 import javax.faces.validator.Validator;
26 import javax.faces.validator.ValidatorException;
27 import org.mxchange.jcoreee.validator.number.BaseLongValidator;
28 import org.mxchange.jusercore.model.user.UserSessionBeanRemote;
29
30 /**
31  * A validator for user ids
32  * <p>
33  * @author Roland Haeder
34  */
35 @FacesValidator (value = "UserIdValidator")
36 public class UserIdValidator extends BaseLongValidator implements Validator {
37
38         /**
39          * Serial number
40          */
41         private static final long serialVersionUID = 12_869_569_314_764_690L;
42
43         /**
44          * Remote bean
45          */
46         @EJB (mappedName = "ejb/stateless-user")
47         private UserSessionBeanRemote userBean;
48
49         @Override
50         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
51                 // Trace message
52                 //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
53
54                 // All accepted, required fields
55                 String[] requiredFileds = {"userId"}; //NOI18N
56
57                 // Pre-validation (example: not null, not a string, empty string ...)
58                 super.preValidate(context, component, value, requiredFileds, false);
59
60                 // Is the address book id valid?
61                 if (!this.userBean.ifUserIdExists((Long) value)) {
62                         // Is not valid
63                         throw new ValidatorException(new FacesMessage(MessageFormat.format("No user found with id {0}. Please check your link.", value))); //NOI18N
64                 }
65
66                 // Trace message
67                 //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
68         }
69 }