Package org.jboss.weld.util.bean
Class IsolatedForwardingDecorator<T>
- java.lang.Object
-
- org.jboss.weld.util.bean.ForwardingBeanAttributes<T>
-
- org.jboss.weld.util.bean.IsolatedForwardingBean<T>
-
- org.jboss.weld.util.bean.IsolatedForwardingDecorator<T>
-
- All Implemented Interfaces:
Contextual<T>,Bean<T>,BeanAttributes<T>,Decorator<T>,WrappedContextual<T>
- Direct Known Subclasses:
ForwardingDecorator,IsolatedForwardingDecorator.Impl
public abstract class IsolatedForwardingDecorator<T> extends IsolatedForwardingBean<T> implements Decorator<T>
Delegating implementation ofDecorator. 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 classIsolatedForwardingDecorator.Impl<T>
-
Constructor Summary
Constructors Constructor Description IsolatedForwardingDecorator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Decorator<T>delegate()Set<Type>getDecoratedTypes()Obtains the decorated types.Set<Annotation>getDelegateQualifiers()Obtains the qualifiers of the delegate injection point.TypegetDelegateType()Obtains the type of the delegate injection point.-
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
-
Methods inherited from interface javax.enterprise.inject.spi.BeanAttributes
getName, getQualifiers, getScope, getStereotypes, getTypes, isAlternative
-
Methods inherited from interface javax.enterprise.context.spi.Contextual
create, destroy
-
-
-
-
Method Detail
-
delegate
public abstract Decorator<T> delegate()
- Specified by:
delegatein interfaceWrappedContextual<T>- Specified by:
delegatein classIsolatedForwardingBean<T>
-
getDelegateType
public Type getDelegateType()
Description copied from interface:DecoratorObtains the type of the delegate injection point.
- Specified by:
getDelegateTypein interfaceDecorator<T>- Returns:
- the delegate type
-
getDelegateQualifiers
public Set<Annotation> getDelegateQualifiers()
Description copied from interface:DecoratorObtains the qualifiers of the delegate injection point.
- Specified by:
getDelegateQualifiersin interfaceDecorator<T>- Returns:
- the delegate qualifiers
-
getDecoratedTypes
public Set<Type> getDecoratedTypes()
Description copied from interface:DecoratorObtains the decorated types.
- Specified by:
getDecoratedTypesin interfaceDecorator<T>- Returns:
- the set of decorated types
-
-