Uses of Interface
javax.context.Contextual

Packages that use Contextual
javax.context   
javax.inject.manager   
org.jboss.webbeans.bean   
org.jboss.webbeans.bean.ee   
org.jboss.webbeans.bean.ee.jms   
org.jboss.webbeans.bean.standard   
org.jboss.webbeans.context   
org.jboss.webbeans.context.api   
org.jboss.webbeans.context.api.helpers   
org.jboss.webbeans.context.beanstore   
 

Uses of Contextual in javax.context
 

Methods in javax.context with parameters of type Contextual
<T> T
Context.get(Contextual<T> contextual)
          Return an existing instance of a contextual type or create a new instance of a contextual type
<T> T
Context.get(Contextual<T> contextual, CreationalContext<T> creationalContext)
          Return an existing instance of a contextual type or create a new instance of a contextual type
 

Uses of Contextual in javax.inject.manager
 

Classes in javax.inject.manager that implement Contextual
 class Bean<T>
          The contract between the manager and a bean.
 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.
 

Uses of Contextual in org.jboss.webbeans.bean
 

Classes in org.jboss.webbeans.bean that implement Contextual
 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
 

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

Classes in org.jboss.webbeans.bean.ee that implement Contextual
 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 Contextual in org.jboss.webbeans.bean.ee.jms
 

Classes in org.jboss.webbeans.bean.ee.jms that implement Contextual
 class JmsQueueBean
          A bean which represents a JMS queue
 class JmsTopicBean
          A bean which represents a JMS topic
 

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

Classes in org.jboss.webbeans.bean.standard that implement Contextual
 class AbstractFacadeBean<T>
           
 class AbstractStandardBean<T>
           
 class EventBean
           
 class InjectionPointBean
          Bean for InjectionPoint metadata
 class InstanceBean
           
 class ManagerBean
           
 

Uses of Contextual in org.jboss.webbeans.context
 

Methods in org.jboss.webbeans.context with parameters of type Contextual
<T> T
DependentContext.get(Contextual<T> contextual)
           
<T> T
AbstractMapContext.get(Contextual<T> contextual)
           
<T> T
DependentContext.get(Contextual<T> contextual, CreationalContext<T> creationalContext)
          Overridden method always creating a new instance
<T> T
AbstractMapContext.get(Contextual<T> contextual, CreationalContext<T> creationalContext)
          Get the bean if it exists in the contexts.
static
<T> ContextualInstance<T>
ContextualInstance.of(Contextual<T> contextual, T instance)
          Static constructor wrapper
 

Constructors in org.jboss.webbeans.context with parameters of type Contextual
ContextualInstance(Contextual<T> contextual, T instance)
          Protected constructor
 

Uses of Contextual in org.jboss.webbeans.context.api
 

Methods in org.jboss.webbeans.context.api that return types with arguments of type Contextual
 java.lang.Iterable<Contextual<? extends java.lang.Object>> BeanStore.getBeans()
          Returns an Iterable over the current contents in the storage
 

Methods in org.jboss.webbeans.context.api with parameters of type Contextual
<T> T
BeanStore.get(Contextual<? extends T> bean)
          Gets an instance of a bean from the storage.
<T> void
BeanStore.put(Contextual<? extends T> bean, T instance)
          Adds a bean instance to the storage
<T> T
BeanStore.remove(Contextual<? extends T> bean)
          Removes an instance of a bean from the storage
 

Uses of Contextual in org.jboss.webbeans.context.api.helpers
 

Fields in org.jboss.webbeans.context.api.helpers with type parameters of type Contextual
protected  java.util.Map<Contextual<? extends java.lang.Object>,java.lang.Object> ConcurrentHashMapBeanStore.delegate
           
 

Methods in org.jboss.webbeans.context.api.helpers that return types with arguments of type Contextual
abstract  java.util.Map<Contextual<? extends java.lang.Object>,java.lang.Object> AbstractMapBackedBeanStore.delegate()
           
 java.util.Map<Contextual<? extends java.lang.Object>,java.lang.Object> ConcurrentHashMapBeanStore.delegate()
          Gets the delegate for the store
 java.util.Set<Contextual<? extends java.lang.Object>> AbstractMapBackedBeanStore.getBeans()
          Returns the beans contained in the store
 java.lang.Iterable<Contextual<? extends java.lang.Object>> ForwardingBeanStore.getBeans()
           
 

Methods in org.jboss.webbeans.context.api.helpers with parameters of type Contextual
<T> T
AbstractMapBackedBeanStore.get(Contextual<? extends T> bean)
          Gets an instance from the store
<T> T
ForwardingBeanStore.get(Contextual<? extends T> bean)
           
<T> void
AbstractMapBackedBeanStore.put(Contextual<? extends T> bean, T instance)
          Puts a bean instance under the bean key in the store
<T> void
ForwardingBeanStore.put(Contextual<? extends T> bean, T instance)
           
<T> T
AbstractMapBackedBeanStore.remove(Contextual<? extends T> bean)
          Removed a instance from the store
<T> T
ForwardingBeanStore.remove(Contextual<? extends T> bean)
           
 

Uses of Contextual in org.jboss.webbeans.context.beanstore
 

Methods in org.jboss.webbeans.context.beanstore that return types with arguments of type Contextual
 java.lang.Iterable<Contextual<? extends java.lang.Object>> AbstractAttributeBackedBeanStore.getBeans()
          Returns the beans present in the store
 

Methods in org.jboss.webbeans.context.beanstore with parameters of type Contextual
<T> T
AbstractAttributeBackedBeanStore.get(Contextual<? extends T> contextual)
          Gets a bean from the store
 java.lang.String BeanStoreNamingScheme.getContextualKey(Contextual<?> contextual)
          Gets a bean store key for a contextual
 java.lang.String PrefixBeanStoreNamingScheme.getContextualKey(Contextual<?> contextual)
           
<T> void
AbstractAttributeBackedBeanStore.put(Contextual<? extends T> bean, T instance)
          Puts an instance of a bean in the store
<T> T
AbstractAttributeBackedBeanStore.remove(Contextual<? extends T> contextual)
          Removes an instance from the store
 



Copyright © 2011. All Rights Reserved.