Interface OwbObserverMethod<T>

  • All Superinterfaces:
    jakarta.enterprise.inject.spi.ObserverMethod<T>, jakarta.enterprise.inject.spi.Prioritized
    All Known Implementing Classes:
    ContainerEventObserverMethodImpl, ObserverMethodImpl

    public interface OwbObserverMethod<T>
    extends jakarta.enterprise.inject.spi.ObserverMethod<T>
    This interface fixes an issue of the CDI API. See https://issues.jboss.org/browse/CDI-36
    • Field Summary

      • Fields inherited from interface jakarta.enterprise.inject.spi.ObserverMethod

        DEFAULT_PRIORITY
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default jakarta.enterprise.inject.spi.Bean<?> getDeclaringBean()  
      Set<jakarta.enterprise.inject.spi.InjectionPoint> getInjectionPoints()
      Returns the InjectionPoints for the parameters of this observer method.
      AbstractOwbBean<?> getOwnerBean()  
      • Methods inherited from interface jakarta.enterprise.inject.spi.ObserverMethod

        getBeanClass, getObservedQualifiers, getObservedType, getPriority, getReception, getTransactionPhase, isAsync, notify, notify
    • Method Detail

      • getInjectionPoints

        Set<jakarta.enterprise.inject.spi.InjectionPoint> getInjectionPoints()
        Returns the InjectionPoints for the parameters of this observer method.
      • getDeclaringBean

        default jakarta.enterprise.inject.spi.Bean<?> getDeclaringBean()
        Specified by:
        getDeclaringBean in interface jakarta.enterprise.inject.spi.ObserverMethod<T>