-
@Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface FacesValidator
The presence of this annotation on a class automatically registers the class with the runtime as a
Validator
. The value of thevalue()
attribute is taken to be the validator-id and the fully qualified class name of the class to which this annotation is attached is taken to be the validator-class. The implementation must guarantee that for each class annotated withFacesValidator
, found with the algorithm in section JSF.11.5,Application.addValidator(java.lang.String,java.lang.String)
is called, passing the derived validator-id as the first argument and the derived validator-class as the second argument. The implementation must guarantee that all such calls toaddValidator()
happen during application startup time and before any requests are serviced.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element and Description boolean
isDefault
If
true
, the validator id for this annotation is added to the list of default validators by a call toApplication.addDefaultValidatorId(java.lang.String)
.String
value
The value of this annotation attribute is taken to be the validator-id with which instances of this class of component can be instantiated by calling
Application.createValidator(java.lang.String)
.
-
-
-
Element Detail
-
value
public abstract String value
The value of this annotation attribute is taken to be the validator-id with which instances of this class of component can be instantiated by calling
Application.createValidator(java.lang.String)
. If no value is specified, or the value isnull
, the value is taken to be the return of callinggetSimpleName
on the class to which this annotation is attached and lowercasing the first character. If more than one validator with this derived name is found, the results are undefined.- Default:
- ""
-
-
-
isDefault
public abstract boolean isDefault
If
true
, the validator id for this annotation is added to the list of default validators by a call toApplication.addDefaultValidatorId(java.lang.String)
.- Default:
- false
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/08/2025 14:28:41 Cette version de la page est en cache (à la date du 21/08/2025 14:28:41) afin d'accélérer le traitement.Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.
Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/faces/validator/FacesValidator.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.