Package org.jboss.weld.util.bean
Class IsolatedForwardingInterceptor<T>
- java.lang.Object
-
- org.jboss.weld.util.bean.ForwardingBeanAttributes<T>
-
- org.jboss.weld.util.bean.IsolatedForwardingBean<T>
-
- org.jboss.weld.util.bean.IsolatedForwardingInterceptor<T>
-
- All Implemented Interfaces:
jakarta.enterprise.context.spi.Contextual<T>,jakarta.enterprise.inject.spi.Bean<T>,jakarta.enterprise.inject.spi.BeanAttributes<T>,jakarta.enterprise.inject.spi.Interceptor<T>,WrappedContextual<T>
- Direct Known Subclasses:
ForwardingInterceptor,IsolatedForwardingInterceptor.Impl
public abstract class IsolatedForwardingInterceptor<T> extends IsolatedForwardingBean<T> implements jakarta.enterprise.inject.spi.Interceptor<T>
Delegating implementation ofInterceptor. Separate delegate is used forBeanAttributesmethods, allowing this class to be used for processing of extension-provided beans.- Author:
- Jozef Hartinger
- See Also:
ProcessBeanAttributes
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIsolatedForwardingInterceptor.Impl<T>
-
Constructor Summary
Constructors Constructor Description IsolatedForwardingInterceptor()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract jakarta.enterprise.inject.spi.Interceptor<T>delegate()Set<Annotation>getInterceptorBindings()Objectintercept(jakarta.enterprise.inject.spi.InterceptionType type, T instance, jakarta.interceptor.InvocationContext ctx)booleanintercepts(jakarta.enterprise.inject.spi.InterceptionType type)-
Methods inherited from class org.jboss.weld.util.bean.IsolatedForwardingBean
create, destroy, equals, getBeanClass, getInjectionPoints, hashCode, toString
-
Methods inherited from class org.jboss.weld.util.bean.ForwardingBeanAttributes
attributes, getName, getQualifiers, getScope, getStereotypes, getTypes, isAlternative
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jakarta.enterprise.inject.spi.Bean
getBeanClass, getInjectionPoints
-
-
-
-
Method Detail
-
delegate
public abstract jakarta.enterprise.inject.spi.Interceptor<T> delegate()
- Specified by:
delegatein interfaceWrappedContextual<T>- Specified by:
delegatein classIsolatedForwardingBean<T>
-
getInterceptorBindings
public Set<Annotation> getInterceptorBindings()
- Specified by:
getInterceptorBindingsin interfacejakarta.enterprise.inject.spi.Interceptor<T>
-
intercepts
public boolean intercepts(jakarta.enterprise.inject.spi.InterceptionType type)
- Specified by:
interceptsin interfacejakarta.enterprise.inject.spi.Interceptor<T>
-
-