Package org.apache.myfaces.taglib.core
Class DelegateValidator
- java.lang.Object
-
- org.apache.myfaces.taglib.core.DelegateValidator
-
- All Implemented Interfaces:
EventListener
,StateHolder
,Validator
public class DelegateValidator extends Object implements Validator, StateHolder
This class is used in conjunction with ValidatorImplTag. When a tag like this is in a jsp page:<f:validator binding="#{mybean}"/> or <f:validator validatorId="#{'anyid'}" binding="#{mybean}"/>
The value of mybean could be already on the context, so this converter avoid creating a new variable and use the previous one.- Version:
- $Revision$ $Date$
- Author:
- Leonardo Uribe (latest modification by $Author$)
-
-
Field Summary
-
Fields inherited from interface javax.faces.validator.Validator
NOT_IN_RANGE_MESSAGE_ID
-
-
Constructor Summary
Constructors Constructor Description DelegateValidator()
DelegateValidator(javax.el.ValueExpression id, javax.el.ValueExpression binding, String converterIdString)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isTransient()
void
restoreState(FacesContext facesContext, Object state)
Object
saveState(FacesContext facesContext)
void
setTransient(boolean arg0)
void
validate(FacesContext facesContext, UIComponent component, Object value)
-
-
-
Constructor Detail
-
DelegateValidator
public DelegateValidator()
-
DelegateValidator
public DelegateValidator(javax.el.ValueExpression id, javax.el.ValueExpression binding, String converterIdString)
-
-
Method Detail
-
isTransient
public boolean isTransient()
- Specified by:
isTransient
in interfaceStateHolder
-
restoreState
public void restoreState(FacesContext facesContext, Object state)
- Specified by:
restoreState
in interfaceStateHolder
-
saveState
public Object saveState(FacesContext facesContext)
- Specified by:
saveState
in interfaceStateHolder
-
setTransient
public void setTransient(boolean arg0)
- Specified by:
setTransient
in interfaceStateHolder
-
validate
public void validate(FacesContext facesContext, UIComponent component, Object value) throws ValidatorException
- Specified by:
validate
in interfaceValidator
- Throws:
ValidatorException
-
-