javax.enterprise.inject.spi

Interface BeforeBeanDiscovery


  • public interface BeforeBeanDiscovery

    This event type is thrown by the container before the bean discovery process begins. If any observer method of the BeforeBeanDiscovery event throws an exception, the exception is treated as a definition error by the container.

    Author:
    Pete Muir, David Allen
    • Method Detail

      • addQualifier

        void addQualifier(Class<? extends Annotation> qualifier)

        Declares an annotation type as a Qualifier qualifier type.

        This is only required if you wish to make an annotation a qualifier without adding Qualifier to it.

        Parameters:
        qualifier - The annotation to treat as a qualifier
      • addQualifier

        void addQualifier(AnnotatedType<? extends Annotation> qualifier)

        Declares an annotation type as a Qualifier qualifier type.

        This is only required if you wish to make an annotation a qualifier without adding Qualifier to it.

        Parameters:
        qualifier - The annotation to treat as a qualifier
        Since:
        1.1
      • addStereotype

        void addStereotype(Class<? extends Annotation> stereotype,
                           Annotation... stereotypeDef)

        Declares an annotation type as a stereotype, and specifies its meta-annotations.

        This is only required if you wish to make an annotation a stereotype without adding Stereotype to it. You can also use this method to override an existing stereotype definition.

        Parameters:
        stereotype - The annotation type to treat as a stereotype
        stereotypeDef - An optional list of annotations defining the stereotype
      • addInterceptorBinding

        void addInterceptorBinding(AnnotatedType<? extends Annotation> bindingType)

        Declares an annotation type as an interceptor binding type.

        This is only required if you wish to make an annotation an interceptor binding type without adding InterceptorBinding to it.

        Parameters:
        bindingType - The annotation type to treat as an interceptor binding type
      • addInterceptorBinding

        void addInterceptorBinding(Class<? extends Annotation> bindingType,
                                   Annotation... bindingTypeDef)

        Declares an annotation type as an interceptor binding type, and specifies its meta-annotations.

        This is only required if you wish to make an annotation an interceptor binding type without adding InterceptorBinding to it.

        Parameters:
        bindingType - The annotation type to treat as an interceptor binding type
        bindingTypeDef - An optional list of annotations defining the interceptor
        Since:
        1.1

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

07/10/2025 08:14:13 Cette version de la page est en cache (à la date du 07/10/2025 08:14:13) 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/enterprise/inject/spi/beforebeandiscovery.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

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com/en/java/, Interface BeforeBeanDiscovery

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.