]> git.mxchange.org Git - jcore-utils.git/blob - src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
f53f6a268d65ff4c3e0c41ba67c8b6b99197e965
[jcore-utils.git] / src / org / mxchange / jcoreee / validator / number / item_amount / ItemAmountValidator.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.jcoreee.validator.number.item_amount;
18
19 import javax.faces.component.UIComponent;
20 import javax.faces.context.FacesContext;
21 import javax.faces.validator.Validator;
22 import javax.faces.validator.ValidatorException;
23 import org.mxchange.jcoreee.validator.number.BaseLongValidator;
24
25 /**
26  * A validator for item amount
27  *
28  * @author Roland Haeder<roland@mxchange.org>
29  */
30 public class ItemAmountValidator extends BaseLongValidator implements Validator {
31
32         /**
33          * Serial number
34          */
35         private static final long serialVersionUID = 64_578_478_218_698_930L;
36
37         @Override
38         public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
39                 // Trace message
40                 //this.getLogger().logTrace(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
41
42                 // The required field
43                 String[] requiredFileds = {"amount"}; //NOI18N
44
45                 // Pre-validation (e.g. not null, not a string, empty string ...)
46                 super.preValidate(context, component, value, requiredFileds);
47
48                 // Trace message
49                 //this.getLogger().logTrace("validate: EXIT!"); //NOI18N
50         }
51 }