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:
javax.enterprise.context.spi.Contextual<T>,javax.enterprise.inject.spi.Bean<T>,javax.enterprise.inject.spi.BeanAttributes<T>,javax.enterprise.inject.spi.Interceptor<T>,WrappedContextual<T>
- Direct Known Subclasses:
ForwardingInterceptor,IsolatedForwardingInterceptor.Impl
public abstract class IsolatedForwardingInterceptor<T> extends IsolatedForwardingBean<T> implements javax.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 javax.enterprise.inject.spi.Interceptor<T>delegate()Set<Annotation>getInterceptorBindings()Objectintercept(javax.enterprise.inject.spi.InterceptionType type, T instance, javax.interceptor.InvocationContext ctx)booleanintercepts(javax.enterprise.inject.spi.InterceptionType type)-
Methods inherited from class org.jboss.weld.util.bean.IsolatedForwardingBean
create, destroy, equals, getBeanClass, getInjectionPoints, hashCode, isNullable, 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 javax.enterprise.inject.spi.Bean
getBeanClass, getInjectionPoints, isNullable
-
-
-
-
Method Detail
-
delegate
public abstract javax.enterprise.inject.spi.Interceptor<T> delegate()
- Specified by:
delegatein interfaceWrappedContextual<T>- Specified by:
delegatein classIsolatedForwardingBean<T>
-
getInterceptorBindings
public Set<Annotation> getInterceptorBindings()
- Specified by:
getInterceptorBindingsin interfacejavax.enterprise.inject.spi.Interceptor<T>
-
intercepts
public boolean intercepts(javax.enterprise.inject.spi.InterceptionType type)
- Specified by:
interceptsin interfacejavax.enterprise.inject.spi.Interceptor<T>
-
-