Uses of Class
org.apache.webbeans.component.AbstractOwbBean

Packages that use AbstractOwbBean
org.apache.webbeans.annotation   
org.apache.webbeans.component   
org.apache.webbeans.component.creation   
org.apache.webbeans.component.third   
org.apache.webbeans.config   
org.apache.webbeans.config.inheritance   
org.apache.webbeans.decorator   
org.apache.webbeans.inject   
org.apache.webbeans.intercept   
org.apache.webbeans.intercept.custom   
org.apache.webbeans.intercept.webbeans   
org.apache.webbeans.util   
 

Uses of AbstractOwbBean in org.apache.webbeans.annotation
 

Methods in org.apache.webbeans.annotation with parameters of type AbstractOwbBean
 boolean AnnotationManager.configuredProducerSpecializedName(AbstractOwbBean<?> component, Method method, Method superMethod)
          Configures the name of the producer method for specializing the parent.
 

Uses of AbstractOwbBean in org.apache.webbeans.component
 

Subclasses of AbstractOwbBean in org.apache.webbeans.component
 class AbstractInjectionTargetBean<T>
          Abstract class for injection target beans.
 class AbstractProducerBean<T>
          Abstract class for producer components.
 class BeanManagerBean
           
 class BuildInOwbBean<T>
          Following 3 options are provided for vendor's build-in beans implementation: 1.
 class ConversationBean
          Conversation bean implementation.
 class EventBean<T>
          Implicit observable bean definition.
 class ExtensionBean<T>
          Extension service bean definition.
 class InjectionPointBean
           
 class InstanceBean<T>
           
 class ManagedBean<T>
          Managed bean implementation of the Bean.
 class NewManagedBean<T>
          Component definition with New binding annotation.
 class ProducerFieldBean<T>
          Defines the producer field component implementation.
 class ProducerMethodBean<T>
          Concrete implementation of the AbstractOwbBean.
 class ResourceBean<X,T extends Annotation>
           
 

Uses of AbstractOwbBean in org.apache.webbeans.component.creation
 

Methods in org.apache.webbeans.component.creation that return AbstractOwbBean
 AbstractOwbBean<T> BeanCreator.getBean()
          Gets bean.
 AbstractOwbBean<T> AbstractBeanCreator.getBean()
          Gets bean.
 

Constructors in org.apache.webbeans.component.creation with parameters of type AbstractOwbBean
AbstractBeanCreator(AbstractOwbBean<T> bean, Annotation[] beanAnnotations)
          Creates a bean instance.
 

Uses of AbstractOwbBean in org.apache.webbeans.component.third
 

Subclasses of AbstractOwbBean in org.apache.webbeans.component.third
 class ThirdpartyBeanImpl<T>
           
 

Uses of AbstractOwbBean in org.apache.webbeans.config
 

Methods in org.apache.webbeans.config with parameters of type AbstractOwbBean
<T> void
DefinitionUtil.addConstructorInjectionPointMetaData(AbstractOwbBean<T> owner, Constructor<T> constructor)
           
<T> void
DefinitionUtil.addFieldInjectionPointMetaData(AbstractOwbBean<T> owner, Field field)
           
<T> void
DefinitionUtil.addMethodInjectionPointMetaData(AbstractOwbBean<T> owner, Method method)
           
static
<T> void
DefinitionUtil.defineApiTypes(AbstractOwbBean<T> bean, Class<T> clazz)
          Configures the web bean api types.
<T> void
DefinitionUtil.defineDisposalMethods(AbstractOwbBean<T> component)
           
<T> void
DefinitionUtil.defineDisposalMethods(AbstractOwbBean<T> component, Class<?> clazz)
           
<T> void
DefinitionUtil.defineName(AbstractOwbBean<T> component, Annotation[] anns, String defaultName)
          Configure web beans component name.
<T> void
DefinitionUtil.defineQualifiers(AbstractOwbBean<T> component, Annotation[] annotations)
          Configure web beans component qualifier.
static
<T> void
DefinitionUtil.defineScopeType(AbstractOwbBean<T> component, Annotation[] annotations, String exceptionMessage, boolean allowLazyInit)
          Configure web beans component scope type.
<T> void
DefinitionUtil.defineSerializable(AbstractOwbBean<T> component)
           
 

Uses of AbstractOwbBean in org.apache.webbeans.config.inheritance
 

Constructors in org.apache.webbeans.config.inheritance with parameters of type AbstractOwbBean
BeanInheritedMetaData(AbstractOwbBean<T> component)
           
 

Uses of AbstractOwbBean in org.apache.webbeans.decorator
 

Subclasses of AbstractOwbBean in org.apache.webbeans.decorator
 class WebBeansDecorator<T>
          Defines decorators.
 

Methods in org.apache.webbeans.decorator that return AbstractOwbBean
 AbstractOwbBean<T> WebBeansDecorator.getDelegateComponent()
           
 AbstractOwbBean<T> OwbDecorator.getDelegateComponent()
           
 

Uses of AbstractOwbBean in org.apache.webbeans.inject
 

Constructors in org.apache.webbeans.inject with parameters of type AbstractOwbBean
InjectableConstructor(Constructor<T> cons, AbstractOwbBean<?> owner, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
          Sets the constructor.
InjectableField(Field field, Object instance, AbstractOwbBean<?> owner, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
           
 

Uses of AbstractOwbBean in org.apache.webbeans.intercept
 

Methods in org.apache.webbeans.intercept that return AbstractOwbBean
 AbstractOwbBean<T> OwbInterceptor.getDelegate()
           
 

Methods in org.apache.webbeans.intercept with parameters of type AbstractOwbBean
 void WebBeansInterceptorConfig.addComponentInterceptors(AbstractOwbBean<?> bean, Set<javax.enterprise.inject.spi.Interceptor<?>> set, List<InterceptorData> stack)
           
 

Uses of AbstractOwbBean in org.apache.webbeans.intercept.custom
 

Subclasses of AbstractOwbBean in org.apache.webbeans.intercept.custom
 class CustomInterceptor<T>
           
 

Uses of AbstractOwbBean in org.apache.webbeans.intercept.webbeans
 

Subclasses of AbstractOwbBean in org.apache.webbeans.intercept.webbeans
 class WebBeansInterceptor<T>
          Defines the webbeans specific interceptors.
 

Methods in org.apache.webbeans.intercept.webbeans that return AbstractOwbBean
 AbstractOwbBean<T> WebBeansInterceptor.getDelegate()
           
 

Uses of AbstractOwbBean in org.apache.webbeans.util
 

Methods in org.apache.webbeans.util with parameters of type AbstractOwbBean
<T> void
WebBeansAnnotatedTypeUtil.addConstructorInjectionPointMetaData(AbstractOwbBean<T> owner, javax.enterprise.inject.spi.AnnotatedConstructor<T> constructor)
           
static
<T,X> void
WebBeansAnnotatedTypeUtil.addFieldInjectionPointMetaData(AbstractOwbBean<T> owner, javax.enterprise.inject.spi.AnnotatedField<X> annotField)
           
 boolean WebBeansUtil.configuredProducerSpecializedName(AbstractOwbBean<?> component, Method method, Method superMethod)
          Configures the name of the producer method for specializing the parent.
static void WebBeansUtil.configureProducerSpecialization(AbstractOwbBean<?> component, Method method, Class<?> superClass)
          Configures the producer method specialization.
static
<X> void
WebBeansAnnotatedTypeUtil.configureProducerSpecialization(AbstractOwbBean<X> bean, javax.enterprise.inject.spi.AnnotatedMethod<X> annotatedMethod)
           
 



Copyright © 2008-2011 The Apache Software Foundation. All Rights Reserved.