Uses of Class
org.jboss.weld.BeanManagerImpl

Packages that use BeanManagerImpl
org.jboss.weld   
org.jboss.weld.bean   
org.jboss.weld.bean.builtin   
org.jboss.weld.bean.builtin.facade   
org.jboss.weld.bean.ee   
org.jboss.weld.bean.interceptor   
org.jboss.weld.bean.proxy   
org.jboss.weld.bootstrap   
org.jboss.weld.bootstrap.events   
org.jboss.weld.el   
org.jboss.weld.event   
org.jboss.weld.injection   
org.jboss.weld.jsf   
org.jboss.weld.metadata.cache   
org.jboss.weld.resolution   
org.jboss.weld.servlet   
org.jboss.weld.util   
 

Uses of BeanManagerImpl in org.jboss.weld
 

Methods in org.jboss.weld that return BeanManagerImpl
 BeanManagerImpl Container.activityManager(java.lang.String key)
          Get the activity manager for a given key
 BeanManagerImpl BeanManagerImpl.createActivity()
           
 BeanManagerImpl Container.deploymentManager()
          Gets the manager for this application deployment
 BeanManagerImpl BeanManagerImpl.getCurrent()
           
static BeanManagerImpl BeanManagerImpl.newChildActivityManager(BeanManagerImpl parentManager)
          Create a new child manager
static BeanManagerImpl BeanManagerImpl.newManager(BeanManagerImpl rootManager, java.lang.String id, org.jboss.weld.bootstrap.api.ServiceRegistry services)
          Create a new, root, manager
static BeanManagerImpl BeanManagerImpl.newRootManager(java.lang.String id, org.jboss.weld.bootstrap.api.ServiceRegistry serviceRegistry)
          Create a new, root, manager
 BeanManagerImpl BeanManagerImpl.setCurrent(java.lang.Class<? extends java.lang.annotation.Annotation> scopeType)
           
 

Methods in org.jboss.weld that return types with arguments of type BeanManagerImpl
 java.util.Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanManagerImpl> Container.beanDeploymentArchives()
           
protected  java.util.Set<BeanManagerImpl> BeanManagerImpl.getAccessibleManagers()
           
 

Methods in org.jboss.weld with parameters of type BeanManagerImpl
 void BeanManagerImpl.addAccessibleBeanManager(BeanManagerImpl accessibleBeanManager)
           
 java.lang.String Container.addActivity(BeanManagerImpl manager)
          Add an activity
static void Container.initialize(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices)
          Initialize the container for the current application deployment
static BeanManagerImpl BeanManagerImpl.newChildActivityManager(BeanManagerImpl parentManager)
          Create a new child manager
static BeanManagerImpl BeanManagerImpl.newManager(BeanManagerImpl rootManager, java.lang.String id, org.jboss.weld.bootstrap.api.ServiceRegistry services)
          Create a new, root, manager
 void Validator.validateBeanNames(BeanManagerImpl beanManager)
           
 void Validator.validateBeans(java.util.Collection<? extends javax.enterprise.inject.spi.Bean<?>> beans, java.util.Collection<RIBean<?>> specializedBeans, BeanManagerImpl manager)
           
 void Validator.validateDeployment(BeanManagerImpl manager, BeanDeployerEnvironment environment)
           
 void Validator.validateInjectionPoint(javax.enterprise.inject.spi.InjectionPoint ij, BeanManagerImpl beanManager)
          Validate an injection point
 void Validator.validateInjectionPointPassivationCapable(javax.enterprise.inject.spi.InjectionPoint ij, javax.enterprise.inject.spi.Bean<?> resolvedBean, BeanManagerImpl beanManager)
           
 

Constructors in org.jboss.weld with parameters of type BeanManagerImpl
Container(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices)
           
SimpleInjectionTarget(WeldClass<T> type, BeanManagerImpl beanManager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.bean
 

Fields in org.jboss.weld.bean declared as BeanManagerImpl
protected  BeanManagerImpl AbstractBean.manager
           
 

Methods in org.jboss.weld.bean that return BeanManagerImpl
protected  BeanManagerImpl RIBean.getManager()
           
 

Methods in org.jboss.weld.bean with parameters of type BeanManagerImpl
protected static java.util.Set<java.lang.annotation.Annotation> AbstractClassBean.flattenInterceptorBindings(BeanManagerImpl manager, java.util.Set<java.lang.annotation.Annotation> annotations)
          Extracts the complete set of interception bindings from a given set of annotations.
static
<X,T> DisposalMethod<X,T>
DisposalMethod.of(BeanManagerImpl manager, WeldMethod<T,X> disposalMethod, AbstractClassBean<X> declaringBean)
           
static
<T> SessionBean<T>
SessionBean.of(InternalEjbDescriptor<T> ejbDescriptor, BeanManagerImpl manager)
          Creates a simple, annotation defined Enterprise Web Bean
static
<T> NewSessionBean<T>
NewSessionBean.of(InternalEjbDescriptor<T> ejbDescriptor, BeanManagerImpl manager)
          Creates an instance of a NewEnterpriseBean from an annotated class
static
<T> NewManagedBean<T>
NewManagedBean.of(WeldClass<T> clazz, BeanManagerImpl manager)
          Creates an instance of a NewSimpleBean from an annotated class
static
<T> ManagedBean<T>
ManagedBean.of(WeldClass<T> clazz, BeanManagerImpl manager)
          Creates a simple, annotation defined Web Bean
static
<T> InterceptorImpl<T>
InterceptorImpl.of(WeldClass<T> type, BeanManagerImpl manager)
           
static
<T> DecoratorImpl<T>
DecoratorImpl.of(WeldClass<T> clazz, BeanManagerImpl manager)
          Creates a decorator bean
static
<X,T> ProducerField<X,T>
ProducerField.of(WeldField<T,X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
          Creates a producer field
static
<X,T> ProducerMethod<X,T>
ProducerMethod.of(WeldMethod<T,X> method, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
          Creates a producer method Web Bean
 

Constructors in org.jboss.weld.bean with parameters of type BeanManagerImpl
AbstractBean(java.lang.String idSuffix, BeanManagerImpl manager)
          Constructor
AbstractClassBean(WeldClass<T> type, java.lang.String idSuffix, BeanManagerImpl manager)
          Constructor
AbstractProducerBean(java.lang.String idSuffix, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
          Constructor
AbstractReceiverBean(java.lang.String idSuffix, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
           
DecoratorImpl(WeldClass<T> type, BeanManagerImpl manager)
           
DisposalMethod(BeanManagerImpl manager, WeldMethod<T,X> disposalMethod, AbstractClassBean<X> declaringBean)
           
InterceptorImpl(WeldClass<T> type, BeanManagerImpl manager)
           
ManagedBean(WeldClass<T> type, java.lang.String idSuffix, BeanManagerImpl manager)
          Constructor
NewManagedBean(WeldClass<T> type, java.lang.String idSuffix, BeanManagerImpl manager)
          Protected constructor
NewSessionBean(WeldClass<T> type, InternalEjbDescriptor<T> ejbDescriptor, java.lang.String idSuffix, BeanManagerImpl manager)
          Protected constructor
ProducerField(WeldField<T,X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
          Constructor
ProducerMethod(WeldMethod<T,X> method, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
           
RIBean(java.lang.String idSuffix, BeanManagerImpl manager)
           
SessionBean(WeldClass<T> type, InternalEjbDescriptor<T> ejbDescriptor, java.lang.String idSuffix, BeanManagerImpl manager)
          Constructor
 

Uses of BeanManagerImpl in org.jboss.weld.bean.builtin
 

Methods in org.jboss.weld.bean.builtin that return BeanManagerImpl
 BeanManagerImpl ManagerBean.create(javax.enterprise.context.spi.CreationalContext<BeanManagerImpl> creationalContext)
           
 

Methods in org.jboss.weld.bean.builtin that return types with arguments of type BeanManagerImpl
 java.lang.Class<BeanManagerImpl> ManagerBean.getType()
           
 

Methods in org.jboss.weld.bean.builtin with parameters of type BeanManagerImpl
 void ManagerBean.destroy(BeanManagerImpl instance, javax.enterprise.context.spi.CreationalContext<BeanManagerImpl> creationalContext)
           
 

Method parameters in org.jboss.weld.bean.builtin with type arguments of type BeanManagerImpl
 BeanManagerImpl ManagerBean.create(javax.enterprise.context.spi.CreationalContext<BeanManagerImpl> creationalContext)
           
 void ManagerBean.destroy(BeanManagerImpl instance, javax.enterprise.context.spi.CreationalContext<BeanManagerImpl> creationalContext)
           
 

Constructors in org.jboss.weld.bean.builtin with parameters of type BeanManagerImpl
AbstractBuiltInBean(java.lang.String idSuffix, BeanManagerImpl manager)
           
DefaultValidatorBean(BeanManagerImpl manager)
           
DefaultValidatorFactoryBean(BeanManagerImpl manager)
           
ExtensionBean(BeanManagerImpl manager, WeldClass<javax.enterprise.inject.spi.Extension> clazz, javax.enterprise.inject.spi.Extension instance)
           
InjectionPointBean(BeanManagerImpl manager)
          Creates an InjectionPoint Web Bean for the injection of the containing bean owning the field, constructor or method for the annotated item
ManagerBean(BeanManagerImpl manager)
           
PrincipalBean(BeanManagerImpl manager)
           
UserTransactionBean(BeanManagerImpl manager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.bean.builtin.facade
 

Methods in org.jboss.weld.bean.builtin.facade that return BeanManagerImpl
protected  BeanManagerImpl AbstractFacade.getManager()
           
 

Methods in org.jboss.weld.bean.builtin.facade with parameters of type BeanManagerImpl
static
<I> javax.enterprise.inject.Instance<I>
InstanceImpl.of(java.lang.reflect.Type type, BeanManagerImpl manager, java.util.Set<java.lang.annotation.Annotation> annotations)
           
 

Constructors in org.jboss.weld.bean.builtin.facade with parameters of type BeanManagerImpl
AbstractFacade(java.lang.reflect.Type type, BeanManagerImpl manager, java.util.Set<? extends java.lang.annotation.Annotation> bindings)
           
AbstractFacadeBean(java.lang.String idSuffix, BeanManagerImpl manager)
           
EventBean(BeanManagerImpl manager)
           
InstanceBean(BeanManagerImpl manager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.bean.ee
 

Methods in org.jboss.weld.bean.ee with parameters of type BeanManagerImpl
static
<X,T> EEResourceProducerField<X,T>
EEResourceProducerField.of(WeldField<T,X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
          Creates an EE resource producer field
static
<X,T extends javax.persistence.EntityManager>
EEResourceProducerField<X,T>
PersistenceContextProducerField.of(WeldField<T,X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
          Creates an EE resource producer field
 

Constructors in org.jboss.weld.bean.ee with parameters of type BeanManagerImpl
EEResourceProducerField(WeldField<T,X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
           
PersistenceContextProducerField(WeldField<T,X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.bean.interceptor
 

Methods in org.jboss.weld.bean.interceptor that return BeanManagerImpl
 BeanManagerImpl CdiInterceptorHandlerFactory.getManager()
           
 

Constructors in org.jboss.weld.bean.interceptor with parameters of type BeanManagerImpl
CdiInterceptorHandlerFactory(javax.enterprise.context.spi.CreationalContext creationalContext, BeanManagerImpl manager)
           
ClassInterceptionHandlerFactory(javax.enterprise.context.spi.CreationalContext<?> creationalContext, BeanManagerImpl manager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.bean.proxy
 

Methods in org.jboss.weld.bean.proxy with parameters of type BeanManagerImpl
<T> T
ClientProxyProvider.getClientProxy(BeanManagerImpl manager, javax.enterprise.inject.spi.Bean<T> bean)
          Gets a client proxy for a bean Looks for a proxy in the pool.
 

Constructors in org.jboss.weld.bean.proxy with parameters of type BeanManagerImpl
ClientProxyMethodHandler(javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl manager, int beanIndex)
          Constructor
 

Uses of BeanManagerImpl in org.jboss.weld.bootstrap
 

Methods in org.jboss.weld.bootstrap that return BeanManagerImpl
 BeanManagerImpl BeanDeployment.getBeanManager()
           
protected  BeanManagerImpl AbstractBeanDeployer.getManager()
           
 BeanManagerImpl WeldBootstrap.getManager(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive)
           
 

Constructors in org.jboss.weld.bootstrap with parameters of type BeanManagerImpl
AbstractBeanDeployer(BeanManagerImpl manager, E environment)
           
BeanDeployer(BeanManagerImpl manager, BeanManagerImpl deploymentManager, EjbDescriptors ejbDescriptors)
           
BeanDeployerEnvironment(EjbDescriptors ejbDescriptors, BeanManagerImpl manager)
           
BeanDeployment(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive, BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.spi.Deployment deployment, ExtensionBeanDeployerEnvironment extensionBeanDeployerEnvironment, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices)
           
ExtensionBeanDeployer(BeanManagerImpl manager, ExtensionBeanDeployerEnvironment environment)
           
ExtensionBeanDeployerEnvironment(EjbDescriptors ejbDescriptors, BeanManagerImpl manager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.bootstrap.events
 

Methods in org.jboss.weld.bootstrap.events that return BeanManagerImpl
protected  BeanManagerImpl AbstractContainerEvent.getBeanManager()
           
 

Methods in org.jboss.weld.bootstrap.events with parameters of type BeanManagerImpl
static void BeforeShutdownImpl.fire(BeanManagerImpl beanManager)
           
static void AfterDeploymentValidationImpl.fire(BeanManagerImpl deploymentManager)
           
static
<X> void
ProcessInjectionTargetImpl.fire(BeanManagerImpl beanManager, AbstractClassBean<X> bean)
           
static
<X,T> void
ProcessProducerImpl.fire(BeanManagerImpl beanManager, AbstractProducerBean<X,T,java.lang.reflect.Member> producer)
           
static
<X> void
ProcessBeanImpl.fire(BeanManagerImpl beanManager, javax.enterprise.inject.spi.Bean<X> bean)
           
static void BeforeBeanDiscoveryImpl.fire(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.spi.Deployment deployment, java.util.Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanDeployment> beanDeployments, ExtensionBeanDeployerEnvironment extensionDeployerEnvironment)
           
static void AfterBeanDiscoveryImpl.fire(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.spi.Deployment deployment, java.util.Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanDeployment> beanDeployments, ExtensionBeanDeployerEnvironment extensionDeployerEnvironment)
           
static
<X> void
ProcessManagedBeanImpl.fire(BeanManagerImpl beanManager, ManagedBean<X> bean)
           
static
<X,T> void
ProcessObserverMethodImpl.fire(BeanManagerImpl beanManager, ObserverMethodImpl<X,T> observer)
           
static
<X,T> void
ProcessProducerFieldImpl.fire(BeanManagerImpl beanManager, ProducerField<X,T> bean)
           
static
<X,T> void
ProcessProducerMethodImpl.fire(BeanManagerImpl beanManager, ProducerMethod<X,T> bean)
           
static
<X> void
ProcessSessionBeanImpl.fire(BeanManagerImpl beanManager, SessionBean<java.lang.Object> bean)
           
static
<X> ProcessAnnotatedTypeImpl<X>
ProcessAnnotatedTypeImpl.fire(BeanManagerImpl beanManager, WeldClass<X> clazz)
           
 

Constructors in org.jboss.weld.bootstrap.events with parameters of type BeanManagerImpl
AbstractBeanDiscoveryEvent(BeanManagerImpl deploymentManager, java.lang.reflect.Type rawType, java.util.Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanDeployment> beanDeployments, org.jboss.weld.bootstrap.spi.Deployment deployment, ExtensionBeanDeployerEnvironment extensionBeanDeployerEnvironment)
           
AbstractContainerEvent(BeanManagerImpl beanManager, java.lang.reflect.Type rawType, java.lang.reflect.Type[] actualTypeArguments)
           
AbstractDefinitionContainerEvent(BeanManagerImpl beanManager, java.lang.reflect.Type rawType, java.lang.reflect.Type[] actualTypeArguments)
           
AbstractDeploymentContainerEvent(BeanManagerImpl beanManager, java.lang.reflect.Type rawType, java.lang.reflect.Type[] actualTypeArguments)
           
AbstractProcessClassBean(BeanManagerImpl beanManager, java.lang.reflect.Type rawType, java.lang.reflect.Type[] actualTypeArguments, B bean)
           
AbstractProcessProducerBean(BeanManagerImpl beanManager, java.lang.reflect.Type rawType, java.lang.reflect.Type[] actualTypeArguments, B bean)
           
AfterBeanDiscoveryImpl(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.spi.Deployment deployment, java.util.Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanDeployment> beanDeployments, ExtensionBeanDeployerEnvironment extensionDeployerEnvironment)
           
AfterDeploymentValidationImpl(BeanManagerImpl beanManager)
           
BeforeBeanDiscoveryImpl(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.spi.Deployment deployment, java.util.Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanDeployment> beanDeployments, ExtensionBeanDeployerEnvironment extensionBeanDeployerEnvironment)
           
BeforeShutdownImpl(BeanManagerImpl beanManager)
           
ProcessAnnotatedTypeImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<X> annotatedType)
           
ProcessBeanImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.Bean<X> bean)
           
ProcessInjectionTargetImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<T> annotatedType, AbstractClassBean<T> bean)
           
ProcessManagedBeanImpl(BeanManagerImpl beanManager, ManagedBean<X> bean)
           
ProcessObserverMethodImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedMethod<X> beanMethod, ObserverMethodImpl<X,T> observerMethod)
           
ProcessProducerFieldImpl(BeanManagerImpl beanManager, ProducerField<X,T> bean)
           
ProcessProducerImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedMember<X> annotatedMember, AbstractProducerBean<X,T,?> bean)
           
ProcessProducerMethodImpl(BeanManagerImpl beanManager, ProducerMethod<X,T> bean)
           
ProcessSessionBeanImpl(BeanManagerImpl beanManager, SessionBean<java.lang.Object> bean)
           
 

Uses of BeanManagerImpl in org.jboss.weld.el
 

Methods in org.jboss.weld.el that return BeanManagerImpl
protected  BeanManagerImpl WeldELResolver.getManager(javax.el.ELContext context)
           
protected abstract  BeanManagerImpl AbstractWeldELResolver.getManager(javax.el.ELContext context)
           
 

Constructors in org.jboss.weld.el with parameters of type BeanManagerImpl
WeldELResolver(BeanManagerImpl beanManager)
           
 

Uses of BeanManagerImpl in org.jboss.weld.event
 

Fields in org.jboss.weld.event declared as BeanManagerImpl
protected  BeanManagerImpl ObserverMethodImpl.manager
           
 

Methods in org.jboss.weld.event with parameters of type BeanManagerImpl
static
<X,T> ObserverMethodImpl<X,T>
ObserverFactory.create(WeldMethod<T,X> method, RIBean<X> declaringBean, BeanManagerImpl manager)
          Creates an observer
static
<E> EventImpl<E>
EventImpl.of(java.lang.reflect.Type eventType, BeanManagerImpl manager, java.util.Set<java.lang.annotation.Annotation> bindings)
           
 

Constructors in org.jboss.weld.event with parameters of type BeanManagerImpl
ObserverMethodImpl(WeldMethod<T,X> observer, RIBean<X> declaringBean, BeanManagerImpl manager)
          Creates an Observer which describes and encapsulates an observer method (8.5).
 

Uses of BeanManagerImpl in org.jboss.weld.injection
 

Methods in org.jboss.weld.injection with parameters of type BeanManagerImpl
protected  java.lang.Object[] ConstructorInjectionPoint.getParameterValues(java.util.List<ParameterInjectionPoint<?,T>> parameters, java.lang.Object specialVal, java.lang.Class<? extends java.lang.annotation.Annotation> specialParam, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
          Helper method for getting the current parameter values from a list of annotated parameters.
protected  java.lang.Object[] MethodInjectionPoint.getParameterValues(java.util.List<ParameterInjectionPoint<?,X>> parameters, java.lang.Class<? extends java.lang.annotation.Annotation> specialParam, java.lang.Object specialVal, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
          Helper method for getting the current parameter values from a list of annotated parameters.
 T ParameterInjectionPoint.getValueToInject(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
           
 void FieldInjectionPoint.inject(java.lang.Object declaringInstance, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
           
 T MethodInjectionPoint.invoke(java.lang.Object declaringInstance, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext, java.lang.Class<? extends java.lang.RuntimeException> exceptionTypeToThrow)
           
 T MethodInjectionPoint.invokeOnInstance(java.lang.Object declaringInstance, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext, java.lang.Class<? extends java.lang.RuntimeException> exceptionTypeToThrow)
           
 T MethodInjectionPoint.invokeOnInstanceWithSpecialValue(java.lang.Object declaringInstance, java.lang.Class<? extends java.lang.annotation.Annotation> annotatedParameter, java.lang.Object parameter, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext, java.lang.Class<? extends java.lang.RuntimeException> exceptionTypeToThrow)
           
 T MethodInjectionPoint.invokeWithSpecialValue(java.lang.Object declaringInstance, java.lang.Class<? extends java.lang.annotation.Annotation> annotatedParameter, java.lang.Object parameter, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext, java.lang.Class<? extends java.lang.RuntimeException> exceptionTypeToThrow)
           
 T ConstructorInjectionPoint.newInstance(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)
           
 

Constructors in org.jboss.weld.injection with parameters of type BeanManagerImpl
InjectionContextImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.InjectionTarget<T> injectionTarget, T target)
           
 

Uses of BeanManagerImpl in org.jboss.weld.jsf
 

Methods in org.jboss.weld.jsf that return BeanManagerImpl
static BeanManagerImpl JsfHelper.getModuleBeanManager(javax.faces.context.FacesContext facesContext)
           
 

Uses of BeanManagerImpl in org.jboss.weld.metadata.cache
 

Constructors in org.jboss.weld.metadata.cache with parameters of type BeanManagerImpl
MergedStereotypes(java.util.Set<java.lang.annotation.Annotation> stereotypeAnnotations, BeanManagerImpl manager)
          Constructor
 

Uses of BeanManagerImpl in org.jboss.weld.resolution
 

Methods in org.jboss.weld.resolution that return BeanManagerImpl
 BeanManagerImpl TypeSafeObserverResolver.getManager()
           
 BeanManagerImpl TypeSafeInterceptorResolver.getManager()
           
 BeanManagerImpl TypeSafeDisposerResolver.getManager()
           
 BeanManagerImpl TypeSafeBeanResolver.getManager()
           
protected  BeanManagerImpl NameBasedResolver.getManager()
           
 

Methods in org.jboss.weld.resolution with parameters of type BeanManagerImpl
static
<T> WeldAnnotated<T,java.lang.Class<T>>
ResolvableWeldClass.of(javax.enterprise.inject.spi.InjectionPoint injectionPoint, BeanManagerImpl manager)
           
static
<T> WeldAnnotated<T,java.lang.Class<T>>
ResolvableWeldClass.of(java.lang.reflect.Member member, java.lang.annotation.Annotation[] annotations, BeanManagerImpl manager)
           
static
<T> WeldAnnotated<T,java.lang.Class<T>>
ResolvableWeldClass.of(java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, BeanManagerImpl manager)
           
static
<T> WeldAnnotated<T,java.lang.Class<T>>
ResolvableWeldClass.of(javax.enterprise.inject.TypeLiteral<T> typeLiteral, java.lang.annotation.Annotation[] annotations, BeanManagerImpl manager)
           
 

Constructors in org.jboss.weld.resolution with parameters of type BeanManagerImpl
NameBasedResolver(BeanManagerImpl manager, java.lang.Iterable<? extends javax.enterprise.inject.spi.Bean<?>> allBeans)
          Constructor
TypeSafeBeanResolver(BeanManagerImpl manager, java.lang.Iterable<T> beans)
           
TypeSafeDecoratorResolver(BeanManagerImpl manager, java.lang.Iterable<DecoratorImpl<?>> decorators)
           
TypeSafeDisposerResolver(BeanManagerImpl manager, java.lang.Iterable<DisposalMethod<?,?>> disposers)
           
TypeSafeInterceptorResolver(BeanManagerImpl manager, java.lang.Iterable<InterceptorImpl<?>> interceptors)
           
TypeSafeObserverResolver(BeanManagerImpl manager, java.lang.Iterable<javax.enterprise.inject.spi.ObserverMethod<?,?>> observers)
           
 

Uses of BeanManagerImpl in org.jboss.weld.servlet
 

Methods in org.jboss.weld.servlet that return BeanManagerImpl
static BeanManagerImpl ServletHelper.getModuleBeanManager(javax.servlet.ServletContext ctx)
           
 

Uses of BeanManagerImpl in org.jboss.weld.util
 

Methods in org.jboss.weld.util with parameters of type BeanManagerImpl
static
<T> void
Beans.callInitializers(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, BeanManagerImpl manager, java.lang.Iterable<? extends MethodInjectionPoint<?,?>> initializerMethods)
          Calls all initializers of the bean
static boolean Beans.containsAllBindings(java.util.Set<java.lang.annotation.Annotation> bindings1, java.util.Set<java.lang.annotation.Annotation> bindings2, BeanManagerImpl manager)
          Checks if binding criteria fulfill all binding types
static boolean Beans.containsAllInterceptionBindings(java.util.Set<java.lang.annotation.Annotation> expectedBindings, java.util.Set<java.lang.annotation.Annotation> existingBindings, BeanManagerImpl manager)
           
static java.util.Set<WeldInjectionPoint<?,?>> Beans.getEjbInjectionPoints(javax.enterprise.inject.spi.Bean<?> declaringBean, WeldClass<?> type, BeanManagerImpl manager)
           
static java.util.Set<WeldInjectionPoint<?,?>> Beans.getPersistenceContextInjectionPoints(javax.enterprise.inject.spi.Bean<?> declaringBean, WeldClass<?> type, BeanManagerImpl manager)
           
static java.util.Set<WeldInjectionPoint<?,?>> Beans.getPersistenceUnitInjectionPoints(javax.enterprise.inject.spi.Bean<?> declaringBean, WeldClass<?> type, BeanManagerImpl manager)
           
static java.util.Set<WeldInjectionPoint<?,?>> Beans.getResourceInjectionPoints(javax.enterprise.inject.spi.Bean<?> declaringBean, WeldClass<?> type, BeanManagerImpl manager)
           
static
<T> void
Beans.injectBoundFields(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, BeanManagerImpl manager, java.lang.Iterable<? extends FieldInjectionPoint<?,?>> injectableFields)
          Injects bound fields
static
<T> void
Beans.injectEEFields(T beanInstance, BeanManagerImpl manager, java.lang.Iterable<WeldInjectionPoint<?,?>> ejbInjectionPoints, java.lang.Iterable<WeldInjectionPoint<?,?>> persistenceContextInjectionPoints, java.lang.Iterable<WeldInjectionPoint<?,?>> persistenceUnitInjectionPoints, java.lang.Iterable<WeldInjectionPoint<?,?>> resourceInjectionPoints)
          Injects EJBs and common fields
static
<T> void
Beans.injectFieldsAndInitializers(T instance, javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl beanManager, java.util.List<? extends java.lang.Iterable<? extends FieldInjectionPoint<?,?>>> injectableFields, java.util.List<? extends java.lang.Iterable<? extends MethodInjectionPoint<?,?>>> initializerMethods)
           
static boolean Beans.isPassivatingScope(javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl manager)
          Indicates if a bean's scope type is passivating
 



Copyright © 2008-2009 Seam Framework. All Rights Reserved.