jakarta.faces.validator.FacesValidator Maven / Gradle / Ivy
Show all versions of jakarta.faces Show documentation
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2021-2021 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.faces.validator;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import jakarta.enterprise.util.AnnotationLiteral;
import jakarta.inject.Qualifier;
/**
*
* The presence of this annotation on a class automatically registers the
* class with the runtime as a {@link Validator}. The value of the {@link #value} 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 with * FacesValidator
, found with the
* algorithm in
* section 11.4 "Annotations that correspond to and may take the place of entries in the Application Configuration Resources" of the Jakarta Faces Specification Document,
* {@link jakarta.faces.application.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 to addValidator()
happen during application
* startup time and before any requests are serviced.
*
*/
@Retention(RUNTIME)
@Target({ TYPE, FIELD, METHOD, PARAMETER })
@Inherited
@Qualifier
public @interface FacesValidator {
/**
*
* 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
* {@link jakarta.faces.application.Application#createValidator(java.lang.String)}. If
* no value is specified, or the value is null
, the value is taken to be the return of calling
* getSimpleName
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.
*
*
* @return the validator-id
*/
String value() default "";
/**
*
* If true
, the validator id for this annotation is added to the list of default validators by a call to
* {@link jakarta.faces.application.Application#addDefaultValidatorId}.
*
*
* @return whether or not this is a default validator
*/
boolean isDefault() default false;
/**
*
* The value of this annotation attribute is taken to be an indicator that flags whether or not the given validator is a
* CDI managed validator.
*
*
* @return true if CDI managed, false otherwise.
*/
boolean managed() default false;
/**
*
* Supports inline instantiation of the {@link FacesValidator} qualifier.
*
*
* @since 4.0
*/
public static final class Literal extends AnnotationLiteral implements FacesValidator {
private static final long serialVersionUID = 1L;
/**
* Instance of the {@link FacesValidator} qualifier.
*/
public static final Literal INSTANCE = of("", false, false);
private final String value;
private final boolean isDefault;
private final boolean managed;
public static Literal of(String value, boolean isDefault, boolean managed) {
return new Literal(value, isDefault, managed);
}
private Literal(String value, boolean isDefault, boolean managed) {
this.value = value;
this.isDefault = isDefault;
this.managed = managed;
}
@Override
public String value() {
return value;
}
@Override
public boolean isDefault() {
return isDefault;
}
@Override
public boolean managed() {
return managed;
}
}
}