Uses of Class
javax.inject.manager.Bean

Packages that use Bean
javax.inject.manager   
org.jboss.webbeans   
org.jboss.webbeans.bean   
org.jboss.webbeans.bean.ee   
org.jboss.webbeans.bean.ee.jms   
org.jboss.webbeans.bean.proxy   
org.jboss.webbeans.bean.standard   
org.jboss.webbeans.context   
org.jboss.webbeans.event   
org.jboss.webbeans.injection   
org.jboss.webbeans.injection.resolution   
org.jboss.webbeans.util   
 

Uses of Bean in javax.inject.manager
 

Subclasses of Bean in javax.inject.manager
 class Decorator
          The Bean object for a a decorator This interface should not be called directly by the application.
 class Interceptor
          The contract between the manager and a interceptor.
 

Methods in javax.inject.manager that return Bean
 Bean<?> InjectionPoint.getBean()
          Get the Bean object representing the Web Bean that defines the injection point
 

Methods in javax.inject.manager that return types with arguments of type Bean
 java.util.Set<Bean<?>> Manager.resolveByName(java.lang.String name)
          Allows beans to be matched by considering the bean name and deployment precedence.
<T> java.util.Set<Bean<T>>
Manager.resolveByType(java.lang.Class<T> type, java.lang.annotation.Annotation... bindings)
          Allows beans to be matched to injection point by considering bean type, bindings, and deployment precedence.
<T> java.util.Set<Bean<T>>
Manager.resolveByType(TypeLiteral<T> type, java.lang.annotation.Annotation... bindings)
          Allows beans to be matched to injection point by considering bean type, bindings, and deployment precedence.
 

Methods in javax.inject.manager with parameters of type Bean
 Manager Manager.addBean(Bean<?> bean)
          Allows a new bean to be registered.
<T> T
Manager.getInstance(Bean<T> bean)
          Obtains an instance of a bean
 

Uses of Bean in org.jboss.webbeans
 

Methods in org.jboss.webbeans that return Bean
<T> Bean<T>
ManagerImpl.getBeanByType(AnnotatedItem<T,?> element, java.lang.annotation.Annotation... bindings)
           
 

Methods in org.jboss.webbeans that return types with arguments of type Bean
 java.util.List<Bean<?>> ManagerImpl.getBeans()
          The beans registered with the Web Bean manager.
 java.util.Map<Bean<?>,Bean<?>> ManagerImpl.getSpecializedBeans()
           
 java.util.Map<Bean<?>,Bean<?>> ManagerImpl.getSpecializedBeans()
           
 java.util.Set<Bean<?>> ManagerImpl.resolveByName(java.lang.String name)
          Resolves a set of beans based on their name
<T> java.util.Set<Bean<T>>
ManagerImpl.resolveByType(AnnotatedItem<T,?> element, java.lang.annotation.Annotation... bindings)
          Check the resolution request is valid, and then ask the resolver to perform the resolution.
<T> java.util.Set<Bean<T>>
ManagerImpl.resolveByType(AnnotatedItem<T,?> element, InjectionPoint injectionPoint, java.lang.annotation.Annotation... bindings)
           
<T> java.util.Set<Bean<T>>
ManagerImpl.resolveByType(java.lang.Class<T> type, java.lang.annotation.Annotation... bindings)
          Resolves beans by API type and binding types
<T> java.util.Set<Bean<T>>
ManagerImpl.resolveByType(TypeLiteral<T> type, java.lang.annotation.Annotation... bindings)
          Resolves beans by API type literal and binding types
 

Methods in org.jboss.webbeans with parameters of type Bean
 Manager ManagerImpl.addBean(Bean<?> bean)
          Registers a bean with the manager
<T> T
ManagerImpl.getInstance(Bean<T> bean)
          Returns an instance of a bean
<T> T
ManagerImpl.getInstance(Bean<T> bean, boolean create)
           
protected  void ManagerImpl.registerBeanNamespace(Bean<?> bean)
           
 

Uses of Bean in org.jboss.webbeans.bean
 

Subclasses of Bean in org.jboss.webbeans.bean
 class AbstractBean<T,E>
          An abstract bean representation common for all beans
 class AbstractClassBean<T>
          An abstract bean representation common for class-based beans
 class AbstractProducerBean<T,S extends Member>
          The implicit producer bean
 class DisposalMethodBean<T>
           
 class EnterpriseBean<T>
          An enterprise bean representation
 class ForwardingBean<T>
          A delegating bean
 class NewEnterpriseBean<T>
          Represents a @New enterprise bean
 class NewSimpleBean<T>
          Represents a @New simple bean
 class ProducerFieldBean<T>
          Represents a producer field bean
 class ProducerMethodBean<T>
          Represents a producer method bean
 class RIBean<T>
          Abstract base class with functions specific to RI built-in beans
 class SimpleBean<T>
          Represents a simple bean
 

Methods in org.jboss.webbeans.bean that return Bean
protected abstract  Bean<T> ForwardingBean.delegate()
          Abstract getter for the delegate
 

Uses of Bean in org.jboss.webbeans.bean.ee
 

Subclasses of Bean in org.jboss.webbeans.bean.ee
 class AbstractJavaEEResourceBean<T>
          Representation of a Java EE Resource bean
 class AbstractResourceBean<T>
           
 class PersistenceContextBean
           
 class PersistenceUnitBean
           
 class RemoteEjbBean<T>
           
 class ResourceBean<T>
           
 class WebServiceBean<T>
           
 

Uses of Bean in org.jboss.webbeans.bean.ee.jms
 

Subclasses of Bean in org.jboss.webbeans.bean.ee.jms
 class JmsQueueBean
          A bean which represents a JMS queue
 class JmsTopicBean
          A bean which represents a JMS topic
 

Uses of Bean in org.jboss.webbeans.bean.proxy
 

Methods in org.jboss.webbeans.bean.proxy with parameters of type Bean
<T> T
ClientProxyProvider.getClientProxy(ManagerImpl manager, Bean<T> bean)
          Gets a client proxy for a bean Looks for a proxy in the pool.
 

Constructors in org.jboss.webbeans.bean.proxy with parameters of type Bean
ClientProxyMethodHandler(Bean<?> bean, ManagerImpl manager, int beanIndex)
          Constructor
 

Uses of Bean in org.jboss.webbeans.bean.standard
 

Subclasses of Bean in org.jboss.webbeans.bean.standard
 class AbstractFacadeBean<T>
           
 class AbstractStandardBean<T>
           
 class EventBean
           
 class InjectionPointBean
          Bean for InjectionPoint metadata
 class InstanceBean
           
 class ManagerBean
           
 

Uses of Bean in org.jboss.webbeans.context
 

Methods in org.jboss.webbeans.context with parameters of type Bean
 boolean CreationalContextImpl.containsIncompleteInstance(Bean<?> bean)
           
<S> CreationalContextImpl<S>
CreationalContextImpl.getCreationalContext(Bean<S> bean)
           
<S> S
CreationalContextImpl.getIncompleteInstance(Bean<S> bean)
           
 

Constructors in org.jboss.webbeans.context with parameters of type Bean
CreationalContextImpl(Bean<T> bean)
           
 

Uses of Bean in org.jboss.webbeans.event
 

Fields in org.jboss.webbeans.event declared as Bean
protected  Bean<?> ObserverImpl.observerBean
           
 

Constructors in org.jboss.webbeans.event with parameters of type Bean
ObserverImpl(AnnotatedMethod<?> observer, Bean<?> observerBean, ManagerImpl manager)
          Creates an Observer which describes and encapsulates an observer method (8.5).
 

Uses of Bean in org.jboss.webbeans.injection
 

Methods in org.jboss.webbeans.injection that return Bean
 Bean<?> FieldInjectionPoint.getBean()
           
 Bean<?> MethodInjectionPoint.getBean()
           
 Bean<?> ParameterInjectionPoint.getBean()
           
 Bean<?> ConstructorInjectionPoint.getBean()
           
 

Methods in org.jboss.webbeans.injection with parameters of type Bean
static
<T> ConstructorInjectionPoint<T>
ConstructorInjectionPoint.of(Bean<?> declaringBean, AnnotatedConstructor<T> constructor)
           
static
<T> FieldInjectionPoint<T>
FieldInjectionPoint.of(Bean<?> declaringBean, AnnotatedField<T> field)
           
static
<T> MethodInjectionPoint<T>
MethodInjectionPoint.of(Bean<?> declaringBean, AnnotatedMethod<T> method)
           
static
<T> ParameterInjectionPoint<T>
ParameterInjectionPoint.of(Bean<?> declaringBean, AnnotatedParameter<T> parameter)
           
 

Constructors in org.jboss.webbeans.injection with parameters of type Bean
ConstructorInjectionPoint(Bean<?> declaringBean, AnnotatedConstructor<T> constructor)
           
FieldInjectionPoint(Bean<?> declaringBean, AnnotatedField<T> field)
           
MethodInjectionPoint(Bean<?> declaringBean, AnnotatedMethod<T> method)
           
 

Uses of Bean in org.jboss.webbeans.injection.resolution
 

Methods in org.jboss.webbeans.injection.resolution that return types with arguments of type Bean
<T,S> java.util.Set<Bean<T>>
Resolver.get(AnnotatedItem<T,S> key)
          Get the possible beans for the given element
 java.util.Set<Bean<? extends java.lang.Object>> Resolver.get(java.lang.String name)
          Get the possible beans for the given name
 

Uses of Bean in org.jboss.webbeans.util
 

Methods in org.jboss.webbeans.util with parameters of type Bean
static java.util.Set<FieldInjectionPoint<?>> Beans.getFieldInjectionPoints(AnnotatedClass<?> annotatedItem, Bean<?> declaringBean)
           
static boolean Beans.isBeanProxyable(Bean<?> bean)
          Indicates if a bean is proxyable
static boolean Beans.isPassivatingBean(Bean<?> bean, ManagerImpl manager)
          Indicates if a bean is passivating
 



Copyright © 2011. All Rights Reserved.