Package jakarta.faces.validator
Class RequiredValidator
java.lang.Object
jakarta.faces.validator.RequiredValidator
- All Implemented Interfaces:
Validator
,EventListener
A Validator that checks for an empty value in the same way that UIInput checks for a value. In fact, this validator is equivalent to setting the required attribute on the input component to true.
- Since:
- 2.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The standard converter id for this converter. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
validate
(FacesContext context, UIComponent component, Object value) Verify that the converted object value is not null.
-
Field Details
-
VALIDATOR_ID
The standard converter id for this converter.
- See Also:
-
-
Constructor Details
-
RequiredValidator
public RequiredValidator()
-
-
Method Details
-
validate
Verify that the converted object value is not null.
- Specified by:
validate
in interfaceValidator
- Parameters:
context
- FacesContext for the request we are processingcomponent
- UIComponent we are checking for correctnessvalue
- the value to validate- Throws:
ValidatorException
- if validation fails
-