Uses of Class
org.jboss.weld.manager.BeanManagerImpl
-
Packages that use BeanManagerImpl Package Description org.jboss.weld JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bean JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bean.attributes JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bean.builtin JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bean.builtin.ee JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bean.interceptor JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bean.proxy JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bootstrap JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.bootstrap.events JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.context.conversation JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.ejb JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.el JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.event JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.injection JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.injection.attributes JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.injection.producer JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.injection.producer.ejb JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.interceptor.proxy JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.interceptor.reader JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.interceptor.spi.metadata JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.manager JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.metadata.cache JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.resolution JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.resources JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.servlet JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.test.util org.jboss.weld.test.util.el org.jboss.weld.util JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc.org.jboss.weld.util.servlet JBoss, Home of Professional Open Source Copyright 2015, Red Hat, Inc. -
-
Uses of BeanManagerImpl in org.jboss.weld
Methods in org.jboss.weld that return BeanManagerImpl Modifier and Type Method Description BeanManagerImplContainer. activityManager(String key)Get the activity manager for a given keyprotected BeanManagerImplSimpleCDI. ambiguousBeanManager(String callerClassName, Set<BeanManagerImpl> managers)Callback that allows to override the behavior when class that invoked CDI.current() is placed in multiple bean archives.BeanManagerImplContainer. deploymentManager()Gets the manager for this application deploymentprotected BeanManagerImplSimpleCDI. unsatisfiedBeanManager(String callerClassName)Callback that allows to override the behavior when CDI.current() is not called from within a bean archive.Methods in org.jboss.weld that return types with arguments of type BeanManagerImpl Modifier and Type Method Description Map<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanManagerImpl>Container. beanDeploymentArchives()Methods in org.jboss.weld with parameters of type BeanManagerImpl Modifier and Type Method Description StringContainer. addActivity(BeanManagerImpl manager)Add an activitystatic voidContainer. initialize(String contextId, BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices)static voidContainer. initialize(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices)Initialize the container for the current application deploymentstatic ContainerContainer. instance(BeanManagerImpl manager)Method parameters in org.jboss.weld with type arguments of type BeanManagerImpl Modifier and Type Method Description protected BeanManagerImplSimpleCDI. ambiguousBeanManager(String callerClassName, Set<BeanManagerImpl> managers)Callback that allows to override the behavior when class that invoked CDI.current() is placed in multiple bean archives.Constructors in org.jboss.weld with parameters of type BeanManagerImpl Constructor Description Container(String contextId, BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices)Container(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices) -
Uses of BeanManagerImpl in org.jboss.weld.bean
Fields in org.jboss.weld.bean declared as BeanManagerImpl Modifier and Type Field Description protected BeanManagerImplRIBean. beanManagerMethods in org.jboss.weld.bean that return BeanManagerImpl Modifier and Type Method Description BeanManagerImplRIBean. getBeanManager()Methods in org.jboss.weld.bean with parameters of type BeanManagerImpl Modifier and Type Method Description static <T> ContextualInstanceStrategy<T>ContextualInstanceStrategy. create(javax.enterprise.inject.spi.BeanAttributes<T> bean, BeanManagerImpl manager)static <T> AbstractSyntheticBean<T>SyntheticBeanFactory. create(javax.enterprise.inject.spi.BeanAttributes<T> attributes, Class<T> beanClass, javax.enterprise.inject.spi.InjectionTargetFactory<T> factory, BeanManagerImpl manager)static <T,X>
AbstractSyntheticBean<T>SyntheticBeanFactory. create(javax.enterprise.inject.spi.BeanAttributes<T> attributes, Class<X> beanClass, javax.enterprise.inject.spi.ProducerFactory<X> factory, BeanManagerImpl manager)static StringBeanIdentifiers. forBuiltInBean(BeanManagerImpl manager, Class<?> type, String suffix)static <T> TContextualInstance. get(javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> ctx)Shortcut for obtaining contextual instances with semantics equivalent to:if (ctx == null) { ctx = manager.createCreationalContext(bean); } manager.getContext(bean.getScope()).get(bean, ctx);static <T> TContextualInstance. get(RIBean<T> bean, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> ctx)static <T> TContextualInstance. getIfExists(javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl manager)Shortcut for obtaining contextual instances with semantics equivalent to:manager.getContext(bean.getScope()).get(bean);static <T> TContextualInstance. getIfExists(RIBean<T> bean, BeanManagerImpl manager)static <T> CustomDecoratorWrapper<T>CustomDecoratorWrapper. of(javax.enterprise.inject.spi.Decorator<T> delegate, BeanManagerImpl beanManager)static <T> DecoratorImpl<T>DecoratorImpl. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> clazz, BeanManagerImpl beanManager)Creates a decorator beanstatic <X,T>
DisposalMethod<X,T>DisposalMethod. of(BeanManagerImpl manager, EnhancedAnnotatedMethod<T,? super X> method, AbstractClassBean<X> declaringBean)static <T> InterceptorImpl<T>InterceptorImpl. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, BeanManagerImpl beanManager)static <T> ManagedBean<T>ManagedBean. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> clazz, BeanManagerImpl beanManager)Creates a simple, annotation defined Web Beanstatic <T> NewManagedBean<T>NewManagedBean. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> clazz, BeanManagerImpl beanManager)Creates an instance of a NewSimpleBean from an annotated classstatic <T> NewSessionBean<T>NewSessionBean. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, InternalEjbDescriptor<T> ejbDescriptor, BeanManagerImpl beanManager)Creates an instance of a NewEnterpriseBean from an annotated classstatic <X,T>
ProducerField<X,T>ProducerField. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl beanManager, org.jboss.weld.bootstrap.api.ServiceRegistry services)Creates a producer fieldstatic <X,T>
ProducerMethod<X,T>ProducerMethod. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedMethod<T,? super X> method, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl beanManager, org.jboss.weld.bootstrap.api.ServiceRegistry services)Creates a producer method Web Beanstatic <T> SessionBean<T>SessionBean. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, InternalEjbDescriptor<T> ejbDescriptor, BeanManagerImpl beanManager, EnhancedAnnotatedType<T> type)Creates a simple, annotation defined Enterprise Web Bean using the annotations specified on typeConstructors in org.jboss.weld.bean with parameters of type BeanManagerImpl Constructor Description AbstractBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)ConstructorAbstractClassBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)ConstructorAbstractProducerBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, org.jboss.weld.serialization.spi.BeanIdentifier identifier, AbstractClassBean<X> declaringBean, BeanManagerImpl beanManager, org.jboss.weld.bootstrap.api.ServiceRegistry services)ConstructorAbstractSyntheticBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, BeanManagerImpl manager, Class<?> beanClass)DecoratorImpl(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, BeanManagerImpl beanManager)DisposalMethod(BeanManagerImpl beanManager, EnhancedAnnotatedMethod<T,? super X> enhancedAnnotatedMethod, AbstractClassBean<X> declaringBean)InterceptorImpl(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, BeanManagerImpl beanManager)ManagedBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)ConstructorNewManagedBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)Protected constructorNewSessionBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, InternalEjbDescriptor<T> ejbDescriptor, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)Protected constructorProducerField(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl manager, org.jboss.weld.bootstrap.api.ServiceRegistry services)ConstructorProducerMethod(org.jboss.weld.serialization.spi.BeanIdentifier identifier, javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedMethod<T,? super X> method, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl beanManager, org.jboss.weld.bootstrap.api.ServiceRegistry services)RIBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)SessionBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedType<T> type, InternalEjbDescriptor<T> ejbDescriptor, org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl manager)ConstructorSyntheticClassBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, Class<T> beanClass, javax.enterprise.inject.spi.InjectionTargetFactory<T> factory, BeanManagerImpl manager)SyntheticDecorator(javax.enterprise.inject.spi.BeanAttributes<T> attributes, Class<T> beanClass, javax.enterprise.inject.spi.InjectionTargetFactory<T> factory, BeanManagerImpl manager)SyntheticProducerBean(javax.enterprise.inject.spi.BeanAttributes<T> attributes, Class<X> beanClass, javax.enterprise.inject.spi.ProducerFactory<X> factory, BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.bean.attributes
Methods in org.jboss.weld.bean.attributes with parameters of type BeanManagerImpl Modifier and Type Method Description static <T> javax.enterprise.inject.spi.BeanAttributes<T>BeanAttributesFactory. forBean(EnhancedAnnotated<T,?> annotated, BeanManagerImpl manager)Creates newBeanAttributesto represent a managed bean.static <T> javax.enterprise.inject.spi.BeanAttributes<T>BeanAttributesFactory. forNewManagedBean(EnhancedAnnotatedType<T> weldClass, BeanManagerImpl manager)static <T> javax.enterprise.inject.spi.BeanAttributes<T>BeanAttributesFactory. forSessionBean(EnhancedAnnotatedType<T> annotated, InternalEjbDescriptor<?> descriptor, BeanManagerImpl manager)Creates newBeanAttributesto represent a session bean. -
Uses of BeanManagerImpl in org.jboss.weld.bean.builtin
Methods in org.jboss.weld.bean.builtin that return BeanManagerImpl Modifier and Type Method Description BeanManagerImplBeanManagerImplBean. create(javax.enterprise.context.spi.CreationalContext<BeanManagerImpl> creationalContext)BeanManagerImplBeanManagerProxy. delegate()protected BeanManagerImplAbstractFacade.AbstractFacadeSerializationProxy. getBeanManager()protected BeanManagerImplAbstractFacade. getBeanManager()static BeanManagerImplBeanManagerProxy. tryUnwrap(Object instance)BeanManagerImplBeanManagerProxy. unwrap()static BeanManagerImplBeanManagerProxy. unwrap(javax.enterprise.inject.spi.BeanManager manager)Methods in org.jboss.weld.bean.builtin that return types with arguments of type BeanManagerImpl Modifier and Type Method Description Class<BeanManagerImpl>BeanManagerImplBean. getType()Methods in org.jboss.weld.bean.builtin with parameters of type BeanManagerImpl Modifier and Type Method Description static <T extends javax.enterprise.context.spi.Context>
ContextBean<T>ContextBean. of(ContextHolder<T> context, BeanManagerImpl beanManager)static <I> javax.enterprise.inject.Instance<I>InstanceImpl. of(javax.enterprise.inject.spi.InjectionPoint injectionPoint, javax.enterprise.context.spi.CreationalContext<I> creationalContext, BeanManagerImpl beanManager)Method parameters in org.jboss.weld.bean.builtin with type arguments of type BeanManagerImpl Modifier and Type Method Description BeanManagerImplBeanManagerImplBean. create(javax.enterprise.context.spi.CreationalContext<BeanManagerImpl> creationalContext)Constructors in org.jboss.weld.bean.builtin with parameters of type BeanManagerImpl Constructor Description AbstractBuiltInBean(org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager, Class<T> type)AbstractBuiltInMetadataBean(org.jboss.weld.serialization.spi.BeanIdentifier identifier, Class<T> type, BeanManagerImpl beanManager)AbstractDecorableBuiltInBean(BeanManagerImpl beanManager, Class<T> type)AbstractFacade(javax.enterprise.inject.spi.InjectionPoint injectionPoint, javax.enterprise.context.spi.CreationalContext<? super T> creationalContext, BeanManagerImpl beanManager)AbstractFacadeBean(BeanManagerImpl manager, Class<T> type)AbstractStaticallyDecorableBuiltInBean(BeanManagerImpl beanManager, Class<T> type)BeanManagerBean(BeanManagerImpl manager)BeanManagerImplBean(BeanManagerImpl manager)BeanManagerProxy(BeanManagerImpl manager)BeanMetadataBean(BeanManagerImpl beanManager)BeanMetadataBean(org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)ContextBean(ContextHolder<T> contextHolder, BeanManagerImpl beanManager)ConversationBean(BeanManagerImpl beanManager)DecoratedBeanMetadataBean(BeanManagerImpl beanManager)DecoratorMetadataBean(BeanManagerImpl beanManager)EventBean(BeanManagerImpl manager)EventMetadataBean(BeanManagerImpl beanManager)ExtensionBean(BeanManagerImpl manager, EnhancedAnnotatedType<E> enhancedAnnotatedType, org.jboss.weld.bootstrap.spi.Metadata<E> instance)FacadeInjectionPoint(BeanManagerImpl manager, javax.enterprise.inject.spi.InjectionPoint injectionPoint, Type rawType, Type subtype, Set<Annotation> existingQualifiers, Annotation[] newQualifiers)InjectionPointBean(BeanManagerImpl manager)Creates an InjectionPoint Web Bean for the injection of the containing bean owning the field, constructor or method for the annotated itemInstanceBean(BeanManagerImpl manager)InterceptedBeanMetadataBean(BeanManagerImpl beanManager)InterceptedBeanMetadataBean(org.jboss.weld.serialization.spi.BeanIdentifier identifier, BeanManagerImpl beanManager)InterceptorMetadataBean(BeanManagerImpl beanManager) -
Uses of BeanManagerImpl in org.jboss.weld.bean.builtin.ee
Methods in org.jboss.weld.bean.builtin.ee that return BeanManagerImpl Modifier and Type Method Description BeanManagerImplAbstractEECallable. getBeanManager()Methods in org.jboss.weld.bean.builtin.ee with parameters of type BeanManagerImpl Modifier and Type Method Description protected ResourceInjection<T>StaticEEResourceProducerField. getResourceInjection(EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, BeanManagerImpl manager)static booleanEEResourceProducerField. isEEResourceProducerField(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedField<?> field)static <X,T>
EEResourceProducerField<X,T>EEResourceProducerField. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl manager, org.jboss.weld.bootstrap.api.ServiceRegistry services)Creates an EE resource producer fieldstatic <X,T>
StaticEEResourceProducerField<X,T>StaticEEResourceProducerField. of(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl manager, org.jboss.weld.bootstrap.api.ServiceRegistry services)Constructors in org.jboss.weld.bean.builtin.ee with parameters of type BeanManagerImpl Constructor Description AbstractEEBean(Class<T> type, Callable<T> callable, BeanManagerImpl beanManager)AbstractEECallable(BeanManagerImpl beanManager)EEResourceProducerField(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl manager, org.jboss.weld.bootstrap.api.ServiceRegistry services)HttpServletRequestBean(BeanManagerImpl beanManager)HttpSessionBean(BeanManagerImpl manager)PrincipalBean(BeanManagerImpl beanManager)ServletContextBean(BeanManagerImpl beanManager)StaticEEResourceProducerField(javax.enterprise.inject.spi.BeanAttributes<T> attributes, EnhancedAnnotatedField<T,? super X> field, AbstractClassBean<X> declaringBean, DisposalMethod<X,?> disposalMethod, BeanManagerImpl manager, org.jboss.weld.bootstrap.api.ServiceRegistry services)UserTransactionBean(BeanManagerImpl beanManager) -
Uses of BeanManagerImpl in org.jboss.weld.bean.interceptor
Methods in org.jboss.weld.bean.interceptor with parameters of type BeanManagerImpl Modifier and Type Method Description TCdiInterceptorFactory. create(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.bean.proxy
Constructors in org.jboss.weld.bean.proxy with parameters of type BeanManagerImpl Constructor Description DecorationHelper(TargetBeanInstance originalInstance, javax.enterprise.inject.spi.Bean<?> bean, Class<T> proxyClassForDecorator, BeanManagerImpl beanManager, org.jboss.weld.serialization.spi.ContextualStore contextualStore, List<javax.enterprise.inject.spi.Decorator<?>> decorators)InjectionPointPropagatingEnterpriseTargetBeanInstance(Class<?> baseType, MethodHandler methodHandler, BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.bootstrap
Methods in org.jboss.weld.bootstrap that return BeanManagerImpl Modifier and Type Method Description BeanManagerImplBeanDeployment. getBeanManager()protected BeanManagerImplAbstractBeanDeployer. getManager()BeanManagerImplWeldBootstrap. getManager(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive)BeanManagerImplWeldRuntime. getManager(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive)BeanManagerImplWeldStartup. getManager(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive)Methods in org.jboss.weld.bootstrap that return types with arguments of type BeanManagerImpl Modifier and Type Method Description ConcurrentMap<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanManagerImpl>BeanDeploymentArchiveMapping. getBdaToBeanManagerMap()Methods in org.jboss.weld.bootstrap with parameters of type BeanManagerImpl Modifier and Type Method Description protected <T,X>
voidExtensionBeanDeployer. createObserverMethod(RIBean<X> declaringBean, BeanManagerImpl beanManager, EnhancedAnnotatedMethod<T,? super X> method, Set<ObserverInitializationContext<?,?>> observerMethodInitializers)protected <X> voidExtensionBeanDeployer. createObserverMethods(RIBean<X> declaringBean, BeanManagerImpl beanManager, EnhancedAnnotatedType<? super X> annotatedClass, Set<ObserverInitializationContext<?,?>> observerMethodInitializers)BeanDeploymentModuleBeanDeploymentModules. getModule(BeanManagerImpl manager)static BeanDeployerEnvironmentBeanDeployerEnvironmentFactory. newConcurrentEnvironment(EjbDescriptors ejbDescriptors, BeanManagerImpl manager)Creates a new threadsafe BeanDeployerEnvironment instance.static BeanDeployerEnvironmentBeanDeployerEnvironmentFactory. newEnvironment(EjbDescriptors ejbDescriptors, BeanManagerImpl manager)voidSpecializationAndEnablementRegistry. registerEnvironment(BeanManagerImpl manager, BeanDeployerEnvironment environment, boolean additionalBeanArchive)protected voidValidator. validateBean(javax.enterprise.inject.spi.Bean<?> bean, Collection<CommonBean<?>> specializedBeans, BeanManagerImpl manager, List<RuntimeException> problems)voidConcurrentValidator. validateBeanNames(BeanManagerImpl beanManager)voidValidator. validateBeanNames(BeanManagerImpl beanManager)voidConcurrentValidator. validateBeans(Collection<? extends javax.enterprise.inject.spi.Bean<?>> beans, BeanManagerImpl manager)voidValidator. validateBeans(Collection<? extends javax.enterprise.inject.spi.Bean<?>> beans, BeanManagerImpl manager)protected voidValidator. validateDecorator(javax.enterprise.inject.spi.Decorator<?> decorator, Collection<CommonBean<?>> specializedBeans, BeanManagerImpl manager)voidConcurrentValidator. validateDecorators(Collection<? extends javax.enterprise.inject.spi.Decorator<?>> decorators, BeanManagerImpl manager)voidValidator. validateDecorators(Collection<? extends javax.enterprise.inject.spi.Decorator<?>> decorators, BeanManagerImpl manager)voidValidator. validateDeployment(BeanManagerImpl manager, BeanDeployment deployment)protected voidValidator. validateGeneralBean(javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl beanManager)voidValidator. validateInjectionPoint(javax.enterprise.inject.spi.InjectionPoint ij, BeanManagerImpl beanManager)Validate an injection pointvoidValidator. validateInjectionPointForDefinitionErrors(javax.enterprise.inject.spi.InjectionPoint ij, javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl beanManager)Checks for definition errors associated with a givenInjectionPointvoidValidator. validateInjectionPointForDeploymentProblems(javax.enterprise.inject.spi.InjectionPoint ij, javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl beanManager)Checks for deployment problems associated with a givenInjectionPointvoidValidator. validateInjectionPointPassivationCapable(javax.enterprise.inject.spi.InjectionPoint ij, javax.enterprise.inject.spi.Bean<?> resolvedBean, BeanManagerImpl beanManager)protected voidValidator. validateInterceptor(javax.enterprise.inject.spi.Interceptor<?> interceptor, BeanManagerImpl manager)voidValidator. validateInterceptorDecoratorInjectionPointPassivationCapable(javax.enterprise.inject.spi.InjectionPoint ij, javax.enterprise.inject.spi.Bean<?> resolvedBean, BeanManagerImpl beanManager, javax.enterprise.inject.spi.Bean<?> bean)voidConcurrentValidator. validateInterceptors(Collection<? extends javax.enterprise.inject.spi.Interceptor<?>> interceptors, BeanManagerImpl manager)voidValidator. validateInterceptors(Collection<? extends javax.enterprise.inject.spi.Interceptor<?>> interceptors, BeanManagerImpl manager)protected voidConcurrentValidator. validateObserverMethods(Iterable<ObserverInitializationContext<?,?>> observers, BeanManagerImpl beanManager)protected voidValidator. validateObserverMethods(Iterable<ObserverInitializationContext<?,?>> observers, BeanManagerImpl beanManager)voidValidator. validateProducer(javax.enterprise.inject.spi.Producer<?> producer, BeanManagerImpl beanManager)voidConcurrentValidator. validateProducers(Collection<javax.enterprise.inject.spi.Producer<?>> producers, BeanManagerImpl beanManager)voidValidator. validateProducers(Collection<javax.enterprise.inject.spi.Producer<?>> producers, BeanManagerImpl beanManager)protected voidValidator. validateRIBean(CommonBean<?> bean, BeanManagerImpl beanManager, Collection<CommonBean<?>> specializedBeans)Validate an RIBean.voidValidator. validateSpecialization(BeanManagerImpl manager)Constructors in org.jboss.weld.bootstrap with parameters of type BeanManagerImpl Constructor Description AbstractBeanDeployer(BeanManagerImpl manager, org.jboss.weld.bootstrap.api.ServiceRegistry services, E environment)BeanDeployer(BeanManagerImpl manager, EjbDescriptors ejbDescriptors, org.jboss.weld.bootstrap.api.ServiceRegistry services)BeanDeployer(BeanManagerImpl manager, EjbDescriptors ejbDescriptors, org.jboss.weld.bootstrap.api.ServiceRegistry services, BeanDeployerEnvironment environment)BeanDeployerEnvironment(Set<SlimAnnotatedTypeContext<?>> annotatedTypes, Set<Class<?>> vetoedClasses, com.google.common.cache.LoadingCache<Class<?>,Set<AbstractClassBean<?>>> classBeanMap, Set<ProducerField<?,?>> producerFields, com.google.common.cache.LoadingCache<BeanDeployerEnvironment.WeldMethodKey,Set<ProducerMethod<?,?>>> producerMethodBeanMap, Set<RIBean<?>> beans, Set<ObserverInitializationContext<?,?>> observers, Set<DisposalMethod<?,?>> allDisposalBeans, Set<DisposalMethod<?,?>> resolvedDisposalBeans, Set<DecoratorImpl<?>> decorators, Set<InterceptorImpl<?>> interceptors, EjbDescriptors ejbDescriptors, Set<EnhancedAnnotatedType<?>> newManagedBeanClasses, Map<InternalEjbDescriptor<?>,EnhancedAnnotatedType<?>> newSessionBeanDescriptorsFromInjectionPoint, BeanManagerImpl manager)BeanDeployerEnvironment(EjbDescriptors ejbDescriptors, BeanManagerImpl manager)BeanDeployment(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive, BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)BeanDeployment(org.jboss.weld.bootstrap.spi.BeanDeploymentArchive beanDeploymentArchive, BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.ServiceRegistry deploymentServices, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts, boolean additionalBeanArchive)ConcurrentBeanDeployer(BeanManagerImpl manager, EjbDescriptors ejbDescriptors, org.jboss.weld.bootstrap.api.ServiceRegistry services)DeploymentVisitor(BeanManagerImpl deploymentManager, org.jboss.weld.bootstrap.api.Environment environment, org.jboss.weld.bootstrap.spi.Deployment deployment, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts, BeanDeploymentArchiveMapping bdaMapping)ExtensionBeanDeployer(BeanManagerImpl manager, org.jboss.weld.bootstrap.spi.Deployment deployment, BeanDeploymentArchiveMapping bdaMapping, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)WeldRuntime(String contextId, BeanManagerImpl deploymentManager, ConcurrentMap<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanManagerImpl> bdaToBeanManagerMap)Constructor parameters in org.jboss.weld.bootstrap with type arguments of type BeanManagerImpl Constructor Description WeldRuntime(String contextId, BeanManagerImpl deploymentManager, ConcurrentMap<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanManagerImpl> bdaToBeanManagerMap) -
Uses of BeanManagerImpl in org.jboss.weld.bootstrap.events
Methods in org.jboss.weld.bootstrap.events that return BeanManagerImpl Modifier and Type Method Description protected BeanManagerImplAbstractContainerEvent. getBeanManager()Methods in org.jboss.weld.bootstrap.events with parameters of type BeanManagerImpl Modifier and Type Method Description protected static <X> javax.enterprise.inject.spi.InjectionTarget<X>AbstractProcessInjectionTarget. fire(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<X> annotatedType, javax.enterprise.inject.spi.InjectionTarget<X> injectionTarget)protected static <X> voidAbstractProcessInjectionTarget. fire(BeanManagerImpl beanManager, AbstractClassBean<X> bean)static voidAfterBeanDiscoveryImpl. fire(BeanManagerImpl beanManager, org.jboss.weld.bootstrap.spi.Deployment deployment, BeanDeploymentArchiveMapping bdaMapping, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)static voidAfterDeploymentValidationImpl. fire(BeanManagerImpl beanManager)static voidAfterTypeDiscoveryImpl. fire(BeanManagerImpl beanManager, org.jboss.weld.bootstrap.spi.Deployment deployment, BeanDeploymentArchiveMapping bdaMapping, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)static voidBeforeBeanDiscoveryImpl. fire(BeanManagerImpl beanManager, org.jboss.weld.bootstrap.spi.Deployment deployment, BeanDeploymentArchiveMapping bdaMapping, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)static voidBeforeShutdownImpl. fire(BeanManagerImpl beanManager)protected static <T> ProcessBeanAttributesImpl<T>ProcessBeanAttributesImpl. fire(BeanManagerImpl beanManager, javax.enterprise.inject.spi.BeanAttributes<T> attributes, javax.enterprise.inject.spi.Annotated annotated, Type type)protected static <X> voidProcessBeanImpl. fire(BeanManagerImpl beanManager, javax.enterprise.inject.spi.Bean<X> bean)protected static <X> voidProcessBeanImpl. fire(BeanManagerImpl beanManager, AbstractBean<X,?> bean)protected static <T,X>
FieldInjectionPointAttributes<T,X>ProcessInjectionPointImpl. fire(FieldInjectionPointAttributes<T,X> attributes, Class<?> declaringComponentClass, BeanManagerImpl manager)static <T,X>
ParameterInjectionPointAttributes<T,X>ProcessInjectionPointImpl. fire(ParameterInjectionPointAttributes<T,X> attributes, Class<?> declaringComponentClass, BeanManagerImpl manager)protected static <X> voidProcessManagedBeanImpl. fire(BeanManagerImpl beanManager, ManagedBean<X> bean)static <T> voidProcessObserverMethodImpl. fire(BeanManagerImpl beanManager, javax.enterprise.inject.spi.ObserverMethod<T> observer)static <T,X>
voidProcessObserverMethodImpl. fire(BeanManagerImpl beanManager, ObserverMethodImpl<T,X> observer)protected static <T,X>
voidProcessProducerFieldImpl. fire(BeanManagerImpl beanManager, ProducerField<T,X> bean)protected static <T,X>
voidProcessProducerImpl. fire(BeanManagerImpl beanManager, AbstractProducerBean<T,X,Member> bean)protected static <T,X>
voidProcessProducerMethodImpl. fire(BeanManagerImpl beanManager, ProducerMethod<T,X> bean)protected static <X> voidProcessSessionBeanImpl. fire(BeanManagerImpl beanManager, SessionBean<Object> bean)<T> ProcessAnnotatedTypeImpl<T>ContainerLifecycleEvents. fireProcessAnnotatedType(BeanManagerImpl beanManager, SlimAnnotatedTypeContext<T> annotatedTypeContext)voidContainerLifecycleEvents. fireProcessBean(BeanManagerImpl beanManager, javax.enterprise.inject.spi.Bean<?> bean)<T> ProcessBeanAttributesImpl<T>ContainerLifecycleEvents. fireProcessBeanAttributes(BeanManagerImpl beanManager, javax.enterprise.inject.spi.BeanAttributes<T> attributes, javax.enterprise.inject.spi.Annotated annotated, Type type)<T,X>
FieldInjectionPointAttributes<T,X>ContainerLifecycleEvents. fireProcessInjectionPoint(FieldInjectionPointAttributes<T,X> attributes, Class<?> declaringComponentClass, BeanManagerImpl manager)<T,X>
ParameterInjectionPointAttributes<T,X>ContainerLifecycleEvents. fireProcessInjectionPoint(ParameterInjectionPointAttributes<T,X> injectionPointAttributes, Class<?> declaringComponentClass, BeanManagerImpl manager)<X> javax.enterprise.inject.spi.InjectionTarget<X>ContainerLifecycleEvents. fireProcessInjectionTarget(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<X> annotatedType, javax.enterprise.inject.spi.InjectionTarget<X> injectionTarget)voidContainerLifecycleEvents. fireProcessInjectionTarget(BeanManagerImpl beanManager, AbstractClassBean<?> bean)voidContainerLifecycleEvents. fireProcessObserverMethod(BeanManagerImpl beanManager, javax.enterprise.inject.spi.ObserverMethod<?> observer)voidContainerLifecycleEvents. fireProcessProducer(BeanManagerImpl beanManager, AbstractProducerBean<?,?,Member> bean)Constructors in org.jboss.weld.bootstrap.events with parameters of type BeanManagerImpl Constructor Description AbstractAnnotatedTypeRegisteringEvent(BeanManagerImpl beanManager, Type rawType, BeanDeploymentArchiveMapping bdaMapping, org.jboss.weld.bootstrap.spi.Deployment deployment, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)AbstractBeanDiscoveryEvent(BeanManagerImpl beanManager, Type rawType, BeanDeploymentArchiveMapping bdaMapping, org.jboss.weld.bootstrap.spi.Deployment deployment, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)AbstractContainerEvent(BeanManagerImpl beanManager, Type rawType, Type[] actualTypeArguments)AbstractDefinitionContainerEvent(BeanManagerImpl beanManager, Type rawType, Type[] actualTypeArguments)AbstractDeploymentContainerEvent(BeanManagerImpl beanManager, Type rawType, Type[] actualTypeArguments)AbstractProcessClassBean(BeanManagerImpl beanManager, Type rawType, Type[] actualTypeArguments, B bean)AbstractProcessInjectionTarget(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<T> annotatedType)AbstractProcessProducerBean(BeanManagerImpl beanManager, Type rawType, Type[] actualTypeArguments, B bean)AfterDeploymentValidationImpl(BeanManagerImpl beanManager)AfterTypeDiscoveryImpl(BeanManagerImpl beanManager, BeanDeploymentArchiveMapping bdaMapping, org.jboss.weld.bootstrap.spi.Deployment deployment, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)BeforeBeanDiscoveryImpl(BeanManagerImpl beanManager, org.jboss.weld.bootstrap.spi.Deployment deployment, BeanDeploymentArchiveMapping bdaMapping, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts)BeforeShutdownImpl(BeanManagerImpl beanManager)ProcessAnnotatedTypeImpl(BeanManagerImpl beanManager, SlimAnnotatedType<X> annotatedType)ProcessAnnotatedTypeImpl(BeanManagerImpl beanManager, SlimAnnotatedType<X> annotatedType, Class<? extends javax.enterprise.inject.spi.ProcessAnnotatedType> rawType)ProcessBeanImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.Bean<X> bean, javax.enterprise.inject.spi.Annotated annotated)ProcessBeanInjectionTarget(BeanManagerImpl beanManager, AbstractClassBean<X> bean)ProcessInjectionPointImpl(javax.enterprise.inject.spi.InjectionPoint ip, Class<?> declaringComponentClass, BeanManagerImpl beanManager, Type injectionPointType)ProcessManagedBeanImpl(BeanManagerImpl beanManager, ManagedBean<X> bean)ProcessObserverMethodImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedMethod<X> beanMethod, javax.enterprise.inject.spi.ObserverMethod<T> observerMethod)ProcessSimpleInjectionTarget(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<X> annotatedType, javax.enterprise.inject.spi.InjectionTarget<X> injectionTarget)ProcessSyntheticAnnotatedTypeImpl(BeanManagerImpl beanManager, SlimAnnotatedTypeContext<T> annotatedTypeContext) -
Uses of BeanManagerImpl in org.jboss.weld.context.conversation
Constructors in org.jboss.weld.context.conversation with parameters of type BeanManagerImpl Constructor Description ConversationImpl(BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.ejb
Methods in org.jboss.weld.ejb that return BeanManagerImpl Modifier and Type Method Description protected abstract BeanManagerImplAbstractEJBRequestScopeActivationInterceptor. getBeanManager()protected BeanManagerImplSessionBeanInterceptor. getBeanManager() -
Uses of BeanManagerImpl in org.jboss.weld.el
Methods in org.jboss.weld.el that return BeanManagerImpl Modifier and Type Method Description protected abstract BeanManagerImplAbstractWeldELResolver. getManager(javax.el.ELContext context)protected BeanManagerImplWeldELResolver. getManager(javax.el.ELContext context)Constructors in org.jboss.weld.el with parameters of type BeanManagerImpl Constructor Description WeldELResolver(BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.event
Fields in org.jboss.weld.event declared as BeanManagerImpl Modifier and Type Field Description protected BeanManagerImplObserverMethodImpl. beanManagerMethods in org.jboss.weld.event with parameters of type BeanManagerImpl Modifier and Type Method Description static <T,X>
ObserverMethodImpl<T,X>ObserverFactory. create(EnhancedAnnotatedMethod<T,? super X> method, RIBean<X> declaringBean, BeanManagerImpl manager)Creates an observerprotected MethodInjectionPoint<T,? super X>ExtensionObserverMethodImpl. initMethodInjectionPoint(EnhancedAnnotatedMethod<T,? super X> observer, RIBean<X> declaringBean, BeanManagerImpl manager)protected MethodInjectionPoint<T,? super X>ObserverMethodImpl. initMethodInjectionPoint(EnhancedAnnotatedMethod<T,? super X> observer, RIBean<X> declaringBean, BeanManagerImpl manager)static <E> EventImpl<E>EventImpl. of(javax.enterprise.inject.spi.InjectionPoint injectionPoint, BeanManagerImpl beanManager)static <T> FastEvent<T>FastEvent. of(Class<T> type, BeanManagerImpl manager, Annotation... qualifiers)Same asFastEvent.of(Class, BeanManagerImpl, Annotation...), just the accessible lenient observer notifier is used for observer method resolutionstatic <T> FastEvent<T>FastEvent. of(Class<T> type, BeanManagerImpl manager, ObserverNotifier notifier, Annotation... qualifiers)Constructs a new FastEvent instancevoidGlobalObserverNotifierService. registerBeanManager(BeanManagerImpl manager)Constructors in org.jboss.weld.event with parameters of type BeanManagerImpl Constructor Description ExtensionObserverMethodImpl(EnhancedAnnotatedMethod<T,? super X> observer, RIBean<X> declaringBean, BeanManagerImpl manager)ObserverMethodImpl(EnhancedAnnotatedMethod<T,? super 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 Modifier and Type Method Description <T> ConstructorInjectionPoint<T>InjectionPointFactory. createConstructorInjectionPoint(javax.enterprise.inject.spi.Bean<T> declaringBean, Class<?> declaringComponentClass, EnhancedAnnotatedConstructor<T> constructor, BeanManagerImpl manager)<T> ConstructorInjectionPoint<T>InjectionPointFactory. createConstructorInjectionPoint(javax.enterprise.inject.spi.Bean<T> declaringBean, EnhancedAnnotatedType<T> type, BeanManagerImpl manager)<T,X>
FieldInjectionPoint<T,X>InjectionPointFactory. createFieldInjectionPoint(EnhancedAnnotatedField<T,X> field, javax.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, BeanManagerImpl manager)Creates a newFieldInjectionPointand fires theProcessInjectionPointevent.<T,X>
MethodInjectionPoint<T,X>InjectionPointFactory. createMethodInjectionPoint(MethodInjectionPoint.MethodInjectionPointType methodInjectionPointType, EnhancedAnnotatedMethod<T,X> enhancedMethod, javax.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, Class<? extends Annotation> specialParameterMarker, BeanManagerImpl manager)<T,X>
ParameterInjectionPoint<T,X>InjectionPointFactory. createParameterInjectionPoint(EnhancedAnnotatedParameter<T,X> parameter, javax.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, BeanManagerImpl manager)Creates a newParameterInjectionPointand fires theProcessInjectionPointevent.static MethodInvocationStrategyMethodInvocationStrategy. forDisposer(MethodInjectionPoint<?,?> method, BeanManagerImpl manager)static MethodInvocationStrategyMethodInvocationStrategy. forObserver(MethodInjectionPoint<?,?> method, BeanManagerImpl manager)List<Set<FieldInjectionPoint<?,?>>>InjectionPointFactory. getFieldInjectionPoints(javax.enterprise.inject.spi.Bean<?> declaringBean, EnhancedAnnotatedType<?> type, BeanManagerImpl manager)<X> List<ParameterInjectionPoint<?,X>>InjectionPointFactory. getParameterInjectionPoints(EnhancedAnnotatedCallable<?,X,?> callable, javax.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, BeanManagerImpl manager, boolean observerOrDisposer)Object[]ConstructorInjectionPoint. getParameterValues(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> ctx, javax.enterprise.context.spi.CreationalContext<?> transientReference)Helper method for getting the current parameter values from a list of annotated parameters.List<Set<ResourceInjection<?>>>ResourceInjectionFactory. getResourceInjections(javax.enterprise.inject.spi.Bean<?> declaringBean, EnhancedAnnotatedType<?> type, BeanManagerImpl manager)<T,X>
ResourceInjection<T>ResourceInjectionFactory. getStaticProducerFieldResourceInjection(FieldInjectionPoint<T,X> fieldInjectionPoint, BeanManagerImpl beanManager)TParameterInjectionPoint. getValueToInject(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)TParameterInjectionPointImpl. getValueToInject(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)voidFieldInjectionPoint. inject(Object declaringInstance, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)abstract TMethodInjectionPoint. invoke(Object receiver, Object specialValue, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> ctx, Class<? extends RuntimeException> exceptionTypeToThrow)Invokes the method.abstract <T> voidMethodInvocationStrategy. invoke(Object receiver, MethodInjectionPoint<?,?> method, T instance, BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)TConstructorInjectionPoint. newInstance(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> ctx)protected <T,X>
FieldInjectionPointAttributes<T,X>InjectionPointFactory. processInjectionPoint(FieldInjectionPointAttributes<T,X> injectionPointAttributes, Class<?> declaringComponentClass, BeanManagerImpl manager)Notifies CDI extension of a givenInjectionPoint.protected <T,X>
ParameterInjectionPointAttributes<T,X>InjectionPointFactory. processInjectionPoint(ParameterInjectionPointAttributes<T,X> injectionPointAttributes, Class<?> declaringComponentClass, BeanManagerImpl manager)Notifies CDI extension of a givenInjectionPoint.Constructors in org.jboss.weld.injection with parameters of type BeanManagerImpl Constructor Description ConstructorInjectionPoint(EnhancedAnnotatedConstructor<T> constructor, javax.enterprise.inject.spi.Bean<T> declaringBean, Class<?> declaringComponentClass, InjectionPointFactory factory, BeanManagerImpl manager)DynamicInjectionPoint(BeanManagerImpl manager)InjectionContextImpl(BeanManagerImpl beanManager, javax.enterprise.inject.spi.InjectionTarget<T> injectionTarget, javax.enterprise.inject.spi.AnnotatedType<T> annotatedType, T target)MethodInjectionPoint(MethodInjectionPoint.MethodInjectionPointType methodInjectionPointType, EnhancedAnnotatedCallable<T,X,Method> callable, javax.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, InjectionPointFactory factory, BeanManagerImpl manager)ProxyClassConstructorInjectionPointWrapper(javax.enterprise.inject.spi.Bean<T> declaringBean, Class<?> declaringComponentClass, EnhancedAnnotatedConstructor<T> weldConstructor, ConstructorInjectionPoint<T> originalConstructorInjectionPoint, BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.injection.attributes
Methods in org.jboss.weld.injection.attributes with parameters of type BeanManagerImpl Modifier and Type Method Description TSpecialParameterInjectionPoint. getValueToInject(BeanManagerImpl manager, javax.enterprise.context.spi.CreationalContext<?> creationalContext)static <T,X>
InferringFieldInjectionPointAttributes<T,X>InferringFieldInjectionPointAttributes. of(EnhancedAnnotatedField<T,X> field, javax.enterprise.inject.spi.Bean<?> bean, Class<?> declaringComponentClass, BeanManagerImpl manager)static <T,X>
InferringParameterInjectionPointAttributes<T,X>InferringParameterInjectionPointAttributes. of(EnhancedAnnotatedParameter<T,X> parameter, javax.enterprise.inject.spi.Bean<?> bean, Class<?> declaringComponentClass, BeanManagerImpl manager)static <T,X>
ParameterInjectionPoint<T,X>SpecialParameterInjectionPoint. of(EnhancedAnnotatedParameter<T,X> parameter, javax.enterprise.inject.spi.Bean<?> bean, Class<?> declaringComponentClass, BeanManagerImpl manager)Constructors in org.jboss.weld.injection.attributes with parameters of type BeanManagerImpl Constructor Description InferringFieldInjectionPointAttributes(EnhancedAnnotatedField<T,X> field, javax.enterprise.inject.spi.Bean<?> bean, Class<?> declaringComponentClass, BeanManagerImpl manager)InferringParameterInjectionPointAttributes(EnhancedAnnotatedParameter<T,X> parameter, javax.enterprise.inject.spi.Bean<?> bean, Class<?> declaringComponentClass, BeanManagerImpl manager)SpecialParameterInjectionPoint(EnhancedAnnotatedParameter<T,X> parameter, javax.enterprise.inject.spi.Bean<?> bean, Class<?> declaringComponentClass, BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.injection.producer
Fields in org.jboss.weld.injection.producer declared as BeanManagerImpl Modifier and Type Field Description protected BeanManagerImplBasicInjectionTarget. beanManagerMethods in org.jboss.weld.injection.producer that return BeanManagerImpl Modifier and Type Method Description abstract BeanManagerImplAbstractMemberProducer. getBeanManager()BeanManagerImplBasicInjectionTarget. getBeanManager()Methods in org.jboss.weld.injection.producer with parameters of type BeanManagerImpl Modifier and Type Method Description protected abstract TAbstractDecoratorApplyingInstantiator. applyDecorators(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, javax.enterprise.inject.spi.InjectionPoint originalInjectionPoint, BeanManagerImpl manager)protected TSubclassDecoratorApplyingInstantiator. applyDecorators(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, javax.enterprise.inject.spi.InjectionPoint originalInjectionPoint, BeanManagerImpl manager)static <T> BasicInjectionTarget<T>BasicInjectionTarget. create(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Injector<T> injector, LifecycleCallbackInvoker<T> invoker)static <T> NonProducibleInjectionTarget<T>NonProducibleInjectionTarget. create(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, Injector<T> injector, LifecycleCallbackInvoker<T> invoker, BeanManagerImpl beanManager)static <T> NonProducibleInjectionTarget<T>NonProducibleInjectionTarget. create(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)static <T> BasicInjectionTarget<T>BasicInjectionTarget. createDefault(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)static <T> BasicInjectionTarget<T>BasicInjectionTarget. createDefault(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Instantiator<T> instantiator)static <T> BeanInjectionTarget<T>BeanInjectionTarget. createDefault(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)protected Class<T>SubclassedComponentInstantiator. createEnhancedSubclass(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl manager)static <T> BasicInjectionTarget<T>BasicInjectionTarget. createNonCdiInterceptor(EnhancedAnnotatedType<T> type, BeanManagerImpl beanManager)CreatesInjectionTargetfor interceptors which do not have associatedInterceptor.static <T> BeanInjectionTarget<T>BeanInjectionTarget. forCdiInterceptor(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl manager)static <T> SubclassedComponentInstantiator<T>SubclassedComponentInstantiator. forInterceptedDecoratedBean(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, AbstractInstantiator<T> delegate, BeanManagerImpl manager)static <T> SubclassedComponentInstantiator<T>SubclassedComponentInstantiator. forSubclassedEjb(EnhancedAnnotatedType<T> componentType, EnhancedAnnotatedType<T> subclass, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl manager)protected TAbstractDecoratorApplyingInstantiator. getOuterDelegate(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, javax.enterprise.inject.spi.InjectionPoint originalInjectionPoint, BeanManagerImpl manager)protected EnhancedAnnotatedConstructor<T>SubclassedComponentInstantiator. initEnhancedSubclass(BeanManagerImpl manager, EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<?> bean, ConstructorInjectionPoint<T> originalConstructorInjectionPoint)protected Instantiator<T>BasicInjectionTarget. initInstantiator(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Set<javax.enterprise.inject.spi.InjectionPoint> injectionPoints)Returns an instantiator that will be used to create a new instance of a given component.protected Instantiator<T>DecoratorInjectionTarget. initInstantiator(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Set<javax.enterprise.inject.spi.InjectionPoint> injectionPoints)protected Instantiator<T>NonProducibleInjectionTarget. initInstantiator(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Set<javax.enterprise.inject.spi.InjectionPoint> injectionPoints)voidDefaultInjector. inject(T instance, javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager, SlimAnnotatedType<T> type, javax.enterprise.inject.spi.InjectionTarget<T> injectionTarget)voidInjector. inject(T instance, javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager, SlimAnnotatedType<T> type, javax.enterprise.inject.spi.InjectionTarget<T> injectionTarget)voidResourceInjector. inject(T instance, javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager, SlimAnnotatedType<T> type, javax.enterprise.inject.spi.InjectionTarget<T> injectionTarget)voidStatelessSessionBeanInjector. inject(T instance, javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager, SlimAnnotatedType<T> type, javax.enterprise.inject.spi.InjectionTarget<T> injectionTarget)TAbstractDecoratorApplyingInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)TAbstractInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)TConstructorInterceptionInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)TForwardingInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)TInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)TInterceptorApplyingInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)static <T> DefaultInjector<T>DefaultInjector. of(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)static <T> InterceptionModelInitializer<T>InterceptionModelInitializer. of(BeanManagerImpl manager, EnhancedAnnotatedType<T> annotatedType, javax.enterprise.inject.spi.Bean<?> bean)static <T> ResourceInjector<T>ResourceInjector. of(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)Constructors in org.jboss.weld.injection.producer with parameters of type BeanManagerImpl Constructor Description BasicInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Injector<T> injector, LifecycleCallbackInvoker<T> invoker)BasicInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Injector<T> injector, LifecycleCallbackInvoker<T> invoker, Instantiator<T> instantiator)BasicInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Instantiator<T> instantiator)BeanInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)BeanInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Injector<T> injector, LifecycleCallbackInvoker<T> invoker)DecoratorInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)DefaultInjector(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)DefaultInstantiator(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl manager)InjectionTargetService(BeanManagerImpl beanManager)InterceptionModelInitializer(BeanManagerImpl manager, EnhancedAnnotatedType<T> annotatedType, javax.enterprise.inject.spi.AnnotatedConstructor<T> constructor, javax.enterprise.inject.spi.Bean<?> bean)ResourceInjector(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)StatelessSessionBeanInjector(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)SubclassedComponentInstantiator(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, ConstructorInjectionPoint<T> originalConstructor, BeanManagerImpl manager)WeldInjectionTargetBuilderImpl(javax.enterprise.inject.spi.AnnotatedType<T> type, BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.injection.producer.ejb
Methods in org.jboss.weld.injection.producer.ejb with parameters of type BeanManagerImpl Modifier and Type Method Description protected Instantiator<T>SessionBeanInjectionTarget. initInstantiator(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager, Set<javax.enterprise.inject.spi.InjectionPoint> injectionPoints)TSessionBeanProxyInstantiator. newInstance(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)static <T> SessionBeanInjectionTarget<T>SessionBeanInjectionTarget. of(EnhancedAnnotatedType<T> type, SessionBean<T> bean, BeanManagerImpl beanManager) -
Uses of BeanManagerImpl in org.jboss.weld.interceptor.proxy
Methods in org.jboss.weld.interceptor.proxy with parameters of type BeanManagerImpl Modifier and Type Method Description static InterceptionContextInterceptionContext. forConstructorInterception(InterceptionModel interceptionModel, javax.enterprise.context.spi.CreationalContext<?> ctx, BeanManagerImpl manager, SlimAnnotatedType<?> type)The context returned by this method may be later reused for other interception types.static InterceptionContextInterceptionContext. forNonConstructorInterception(InterceptionModel interceptionModel, javax.enterprise.context.spi.CreationalContext<?> ctx, BeanManagerImpl manager, SlimAnnotatedType<?> type) -
Uses of BeanManagerImpl in org.jboss.weld.interceptor.reader
Methods in org.jboss.weld.interceptor.reader with parameters of type BeanManagerImpl Modifier and Type Method Description static Map<InterceptionType,List<Method>>InterceptorMetadataUtils. buildMethodMap(EnhancedAnnotatedType<?> type, boolean forTargetClass, BeanManagerImpl manager)TPlainInterceptorFactory. create(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)static <T> PlainInterceptorFactory<T>PlainInterceptorFactory. of(Class<T> javaClass, BeanManagerImpl manager)Constructors in org.jboss.weld.interceptor.reader with parameters of type BeanManagerImpl Constructor Description InterceptorMetadataReader(BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.interceptor.spi.metadata
Methods in org.jboss.weld.interceptor.spi.metadata with parameters of type BeanManagerImpl Modifier and Type Method Description TInterceptorFactory. create(javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl manager)Create a new instance of the interceptor -
Uses of BeanManagerImpl in org.jboss.weld.manager
Fields in org.jboss.weld.manager with type parameters of type BeanManagerImpl Modifier and Type Field Description static com.google.common.base.Function<BeanManagerImpl,String>BeanManagers. BEAN_MANAGER_TO_IDMethods in org.jboss.weld.manager that return BeanManagerImpl Modifier and Type Method Description BeanManagerImplBeanManagerImpl. createActivity()BeanManagerImplBeanManagerImpl. getCurrent()protected BeanManagerImplAbstractProducerFactory. getManager()static BeanManagerImplBeanManagerLookupService. lookupBeanManager(Class<?> javaClass, BeanManagerImpl fallback)static BeanManagerImplBeanManagerImpl. newChildActivityManager(BeanManagerImpl parentManager)Create a new child managerstatic BeanManagerImplBeanManagerImpl. newManager(BeanManagerImpl rootManager, String id, org.jboss.weld.bootstrap.api.ServiceRegistry services)static BeanManagerImplBeanManagerImpl. newRootManager(String contextId, String id, org.jboss.weld.bootstrap.api.ServiceRegistry serviceRegistry)Create a new, root, managerBeanManagerImplBeanManagerImpl. setCurrent(Class<? extends Annotation> scopeType)BeanManagerImplBeanManagerImpl. unwrap()Methods in org.jboss.weld.manager that return types with arguments of type BeanManagerImpl Modifier and Type Method Description HashSet<BeanManagerImpl>BeanManagerImpl. getAccessibleManagers()Methods in org.jboss.weld.manager with parameters of type BeanManagerImpl Modifier and Type Method Description voidBeanManagerImpl. addAccessibleBeanManager(BeanManagerImpl accessibleBeanManager)Iterable<T>Transform. apply(BeanManagerImpl input)static BeanManagerImplBeanManagerLookupService. lookupBeanManager(Class<?> javaClass, BeanManagerImpl fallback)static BeanManagerImplBeanManagerImpl. newChildActivityManager(BeanManagerImpl parentManager)Create a new child managerstatic BeanManagerImplBeanManagerImpl. newManager(BeanManagerImpl rootManager, String id, org.jboss.weld.bootstrap.api.ServiceRegistry services)abstract Iterable<T>Transform. transform(BeanManagerImpl input)Constructors in org.jboss.weld.manager with parameters of type BeanManagerImpl Constructor Description AbstractProducerFactory(javax.enterprise.inject.spi.Bean<X> declaringBean, BeanManagerImpl manager)FieldProducerFactory(javax.enterprise.inject.spi.AnnotatedField<? super X> field, javax.enterprise.inject.spi.Bean<X> declaringBean, BeanManagerImpl manager)InjectionTargetFactoryImpl(javax.enterprise.inject.spi.AnnotatedType<T> type, BeanManagerImpl manager)MethodProducerFactory(javax.enterprise.inject.spi.AnnotatedMethod<? super X> method, javax.enterprise.inject.spi.Bean<X> declaringBean, BeanManagerImpl manager)Constructor parameters in org.jboss.weld.manager with type arguments of type BeanManagerImpl Constructor Description BeanManagerLookupService(org.jboss.weld.bootstrap.spi.CDI11Deployment deployment, ConcurrentMap<org.jboss.weld.bootstrap.spi.BeanDeploymentArchive,BeanManagerImpl> bdaToBeanManagerMap) -
Uses of BeanManagerImpl in org.jboss.weld.metadata.cache
Methods in org.jboss.weld.metadata.cache with parameters of type BeanManagerImpl Modifier and Type Method Description static <T,E>
MergedStereotypes<T,E>MergedStereotypes. of(Set<Annotation> stereotypeAnnotations, BeanManagerImpl manager)static <T,E>
MergedStereotypes<T,E>MergedStereotypes. of(EnhancedAnnotated<T,E> annotated, BeanManagerImpl manager)Constructors in org.jboss.weld.metadata.cache with parameters of type BeanManagerImpl Constructor Description MergedStereotypes(Set<Annotation> stereotypeAnnotations, BeanManagerImpl manager)Constructor -
Uses of BeanManagerImpl in org.jboss.weld.resolution
Methods in org.jboss.weld.resolution that return BeanManagerImpl Modifier and Type Method Description protected BeanManagerImplAbstractTypeSafeBeanResolver. getBeanManager()BeanManagerImplTypeSafeInterceptorResolver. getManager()Constructors in org.jboss.weld.resolution with parameters of type BeanManagerImpl Constructor Description AbstractTypeSafeBeanResolver(BeanManagerImpl beanManager, Iterable<T> beans)DecoratorResolvableBuilder(BeanManagerImpl manager)InterceptorResolvableBuilder(Type type, BeanManagerImpl manager)InterceptorResolvableBuilder(BeanManagerImpl manager)NameBasedResolver(BeanManagerImpl manager, Iterable<? extends javax.enterprise.inject.spi.Bean<?>> allBeans)ConstructorResolvableBuilder(Type type, BeanManagerImpl beanManager)ResolvableBuilder(javax.enterprise.inject.spi.InjectionPoint injectionPoint, BeanManagerImpl manager)ResolvableBuilder(BeanManagerImpl manager)TypeSafeBeanResolver(BeanManagerImpl beanManager, Iterable<javax.enterprise.inject.spi.Bean<?>> beans)TypeSafeDecoratorResolver(BeanManagerImpl manager, Iterable<javax.enterprise.inject.spi.Decorator<?>> decorators)TypeSafeInterceptorResolver(BeanManagerImpl manager, Iterable<javax.enterprise.inject.spi.Interceptor<?>> interceptors) -
Uses of BeanManagerImpl in org.jboss.weld.resources
Methods in org.jboss.weld.resources with parameters of type BeanManagerImpl Modifier and Type Method Description static ClassTransformerClassTransformer. instance(BeanManagerImpl manager)static SharedObjectCacheSharedObjectCache. instance(BeanManagerImpl manager) -
Uses of BeanManagerImpl in org.jboss.weld.servlet
Constructors in org.jboss.weld.servlet with parameters of type BeanManagerImpl Constructor Description ConversationContextActivator(BeanManagerImpl beanManager, boolean lazy)HttpContextLifecycle(BeanManagerImpl beanManager, org.jboss.weld.servlet.spi.HttpContextActivationFilter contextActivationFilter, boolean ignoreForwards, boolean ignoreIncludes, boolean lazyConversationContext, boolean nestedInvocationGuardEnabled)WeldInitialListener(BeanManagerImpl beanManager)WeldTerminalListener(BeanManagerImpl beanManager) -
Uses of BeanManagerImpl in org.jboss.weld.test.util
Methods in org.jboss.weld.test.util with parameters of type BeanManagerImpl Modifier and Type Method Description static <T> TUtils. evaluateValueExpression(BeanManagerImpl beanManager, String expression, Class<T> expectedType) -
Uses of BeanManagerImpl in org.jboss.weld.test.util.el
Methods in org.jboss.weld.test.util.el with parameters of type BeanManagerImpl Modifier and Type Method Description static javax.el.ELContextEL. createELContext(BeanManagerImpl beanManagerImpl) -
Uses of BeanManagerImpl in org.jboss.weld.util
Methods in org.jboss.weld.util with parameters of type BeanManagerImpl Modifier and Type Method Description static <T> voidBeans. callInitializers(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, BeanManagerImpl manager, Iterable<? extends MethodInjectionPoint<?,?>> initializerMethods)Calls all initializers of the beanstatic <T> voidDecorators. checkAbstractMethods(Set<Type> decoratedTypes, EnhancedAnnotatedType<T> type, BeanManagerImpl beanManager)Check all abstract methods are declared by the decorated types.static booleanBeans. containsAllInterceptionBindings(Set<Annotation> expectedBindings, Set<QualifierInstance> existingBindings, BeanManagerImpl manager)static <T> NonProducibleInjectionTarget<T>InjectionTargets. createNonProducibleInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, Injector<T> injector, LifecycleCallbackInvoker<T> invoker, BeanManagerImpl beanManager)static <T> NonProducibleInjectionTarget<T>InjectionTargets. createNonProducibleInjectionTarget(EnhancedAnnotatedType<T> type, javax.enterprise.inject.spi.Bean<T> bean, BeanManagerImpl beanManager)static Set<Annotation>Interceptors. filterInterceptorBindings(BeanManagerImpl beanManager, Collection<Annotation> annotations)Extracts a set of interceptor bindings from a collection of annotations.static booleanBeans. findInterceptorBindingConflicts(BeanManagerImpl manager, Set<Annotation> bindings)static Set<Annotation>Interceptors. flattenInterceptorBindings(BeanManagerImpl beanManager, Collection<Annotation> annotations, boolean addTopLevelInterceptorBindings, boolean addInheritedInterceptorBindings)Extracts a flat set of interception bindings from a given set of interceptor bindings.static Set<InvokableAnnotatedMethod<?>>Decorators. getDecoratorMethods(BeanManagerImpl beanManager, WeldDecorator<?> decorator)Determines the set ofInvokableAnnotatedMethods representing decorated methods of the specified decorator.static <T> EnhancedAnnotatedType<T>Beans. getEjbImplementationClass(InternalEjbDescriptor<T> ejbDescriptor, BeanManagerImpl manager, EnhancedAnnotatedType<T> componentType)static <T> List<Set<MethodInjectionPoint<?,?>>>BeanMethods. getInitializerMethods(javax.enterprise.inject.spi.Bean<?> declaringBean, EnhancedAnnotatedType<T> type, BeanManagerImpl manager)static BeanDeploymentDeploymentStructures. getOrCreateBeanDeployment(org.jboss.weld.bootstrap.spi.Deployment deployment, BeanManagerImpl deploymentManager, BeanDeploymentArchiveMapping bdaMapping, Collection<ContextHolder<? extends javax.enterprise.context.spi.Context>> contexts, Class<?> clazz)static <T> TDecorators. getOuterDelegate(javax.enterprise.inject.spi.Bean<T> bean, T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, Class<T> proxyClass, javax.enterprise.inject.spi.InjectionPoint originalInjectionPoint, BeanManagerImpl manager, List<javax.enterprise.inject.spi.Decorator<?>> decorators)static <T> voidBeans. injectBoundFields(T instance, javax.enterprise.context.spi.CreationalContext<T> creationalContext, BeanManagerImpl manager, Iterable<? extends FieldInjectionPoint<?,?>> injectableFields)Injects bound fieldsstatic <T> voidBeans. injectFieldsAndInitializers(T instance, javax.enterprise.context.spi.CreationalContext<T> ctx, BeanManagerImpl beanManager, List<? extends Iterable<? extends FieldInjectionPoint<?,?>>> injectableFields, List<? extends Iterable<? extends MethodInjectionPoint<?,?>>> initializerMethods)static booleanBeans. isBeanProxyable(javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl manager)Indicates if a bean is proxyablestatic booleanObservers. isObserverMethodEnabled(javax.enterprise.inject.spi.ObserverMethod<?> method, BeanManagerImpl manager)static booleanBeans. isPassivatingScope(javax.enterprise.inject.spi.Bean<?> bean, BeanManagerImpl manager)Indicates if a bean's scope type is passivatingstatic Map<Class<? extends Annotation>,Annotation>Interceptors. mergeBeanInterceptorBindings(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<?> clazz, Collection<Annotation> classBindingAnnotations, Collection<Annotation> inheritedBindingAnnotations)Merge class-level interceptor bindings with interceptor bindings inherited from interceptor bindings and stereotypes.static Map<Class<? extends Annotation>,Annotation>Interceptors. mergeBeanInterceptorBindings(BeanManagerImpl beanManager, javax.enterprise.inject.spi.AnnotatedType<?> clazz, Collection<Class<? extends Annotation>> stereotypes)Merge class-level interceptor bindings with interceptor bindings inherited from interceptor bindings and stereotypes.static Set<Annotation>Beans. mergeInQualifiers(BeanManagerImpl manager, Collection<Annotation> qualifiers, Annotation[] newQualifiers)static <T extends javax.enterprise.inject.spi.Bean<?>>
Set<T>Beans. removeDisabledBeans(Set<T> beans, BeanManagerImpl beanManager, SpecializationAndEnablementRegistry registry)Retains only beans which are enabled.Constructors in org.jboss.weld.util with parameters of type BeanManagerImpl Constructor Description InterceptorBindingSet(BeanManagerImpl beanManager) -
Uses of BeanManagerImpl in org.jboss.weld.util.servlet
Methods in org.jboss.weld.util.servlet with parameters of type BeanManagerImpl Modifier and Type Method Description static org.jboss.weld.servlet.spi.HttpContextActivationFilterServletUtils. getContextActivationFilter(BeanManagerImpl manager, javax.servlet.ServletContext context)Returns the rightHttpContextActivationFilter.
-