Uses of Class
org.jboss.ejb3.stateful.StatefulBeanContext

Packages that use StatefulBeanContext
org.jboss.ejb3.cache   
org.jboss.ejb3.cache.simple   
org.jboss.ejb3.cache.tree   
org.jboss.ejb3.stateful   
 

Uses of StatefulBeanContext in org.jboss.ejb3.cache
 

Methods in org.jboss.ejb3.cache that return StatefulBeanContext
 StatefulBeanContext NoPassivationCache.create()
           
 StatefulBeanContext NoPassivationCache.create(Class<?>[] initTypes, Object[] initValues)
           
 StatefulBeanContext StatefulCache.create(Class<?>[] initTypes, Object[] initValues)
          Deprecated.  
 StatefulBeanContext NoPassivationCache.get(Object key)
           
 StatefulBeanContext StatefulCache.get(Object key)
          Deprecated. Gets the context with the given id.
 StatefulBeanContext NoPassivationCache.get(Object key, boolean markInUse)
           
 StatefulBeanContext StatefulCache.get(Object key, boolean markInUse)
          Deprecated. Get the context with the given id, optionally marking the context as being in use.
 StatefulBeanContext NoPassivationCache.peek(Object key)
           
 

Methods in org.jboss.ejb3.cache with parameters of type StatefulBeanContext
 void NoPassivationCache.release(StatefulBeanContext ctx)
           
 void ClusteredStatefulCache.replicate(StatefulBeanContext ctx)
           
 

Uses of StatefulBeanContext in org.jboss.ejb3.cache.simple
 

Methods in org.jboss.ejb3.cache.simple that return StatefulBeanContext
 StatefulBeanContext StatefulSessionFilePersistenceManager.activateSession(Object id)
          Restores session state from the serialized file & invokes SessionBean.ejbActivate() on the target bean.
 StatefulBeanContext StatefulSessionPersistenceManager.activateSession(Object id)
          Restores session state from the serialized file & invokes SessionBean.ejbActivate() on the target bean.
 StatefulBeanContext SimpleStatefulCache.create()
           
 StatefulBeanContext SimpleStatefulCache.create(Class<?>[] initTypes, Object[] initValues)
           
 StatefulBeanContext SimpleStatefulCache.get(Object key)
           
 StatefulBeanContext SimpleStatefulCache.get(Object key, boolean markInUse)
           
 StatefulBeanContext SimpleStatefulCache.peek(Object key)
           
 

Methods in org.jboss.ejb3.cache.simple that return types with arguments of type StatefulBeanContext
 List<StatefulBeanContext> StatefulSessionFilePersistenceManager.getPassivatedBeans()
           
 List<StatefulBeanContext> StatefulSessionPersistenceManager.getPassivatedBeans()
           
 

Methods in org.jboss.ejb3.cache.simple with parameters of type StatefulBeanContext
protected  void SimpleStatefulCache.passivate(StatefulBeanContext ctx)
           
 void StatefulSessionFilePersistenceManager.passivateSession(StatefulBeanContext ctx)
          Invokes SessionBean.ejbPassivate() on the target bean and saves the state of the session to a file.
 void StatefulSessionPersistenceManager.passivateSession(StatefulBeanContext ctx)
          Invokes SessionBean.ejbPassivate() on the target bean and saves the state of the session to a file.
 void SimpleStatefulCache.release(StatefulBeanContext ctx)
           
 

Method parameters in org.jboss.ejb3.cache.simple with type arguments of type StatefulBeanContext
 boolean SimpleStatefulCache.CacheMap.removeEldestEntry(Map.Entry<Object,StatefulBeanContext> entry)
           
 

Constructor parameters in org.jboss.ejb3.cache.simple with type arguments of type StatefulBeanContext
SimpleStatefulCache.CacheMap(Map<? extends Object,? extends StatefulBeanContext> original)
           
 

Uses of StatefulBeanContext in org.jboss.ejb3.cache.tree
 

Methods in org.jboss.ejb3.cache.tree that return StatefulBeanContext
 StatefulBeanContext StatefulTreeCache.create()
           
 StatefulBeanContext StatefulTreeCache.create(Class[] initTypes, Object[] initValues)
           
 StatefulBeanContext StatefulTreeCache.get(Object key)
           
 StatefulBeanContext StatefulTreeCache.get(Object key, boolean markInUse)
           
 StatefulBeanContext StatefulTreeCache.peek(Object key)
           
 

Methods in org.jboss.ejb3.cache.tree with parameters of type StatefulBeanContext
 void StatefulTreeCache.release(StatefulBeanContext ctx)
           
 void StatefulTreeCache.replicate(StatefulBeanContext ctx)
           
 

Uses of StatefulBeanContext in org.jboss.ejb3.stateful
 

Subclasses of StatefulBeanContext in org.jboss.ejb3.stateful
 class NestedStatefulBeanContext
          Overrides superclass to not use MarshalledValue in externalization, as a nested context is meant to be serialized as part of its parent context and to share with it object references to any XPC or managed entities.
 class ProxiedStatefulBeanContext
          Proxy to a NestedStatefulBeanContext that can be independently passivated, activated and replicated without disturbing the object it is proxying.
 

Fields in org.jboss.ejb3.stateful declared as StatefulBeanContext
protected  StatefulBeanContext StatefulBeanContext.containedIn
           
 

Fields in org.jboss.ejb3.stateful with type parameters of type StatefulBeanContext
protected  List<StatefulBeanContext> StatefulBeanContext.contains
           
static ThreadLocalStack<StatefulBeanContext> StatefulBeanContext.currentBean
           
static ThreadLocalStack<StatefulBeanContext> StatefulBeanContext.propagatedContainedIn
           
 

Methods in org.jboss.ejb3.stateful that return StatefulBeanContext
 StatefulBeanContext StatefulContainer.create(Class<?>[] initTypes, Object[] initValues)
           
 StatefulBeanContext StatefulBeanContextReference.getBeanContext()
           
 StatefulBeanContext StatefulBeanContext.getContainedIn()
           
 StatefulBeanContext ProxiedStatefulBeanContext.getContainedIn()
           
protected  StatefulBeanContext ProxiedStatefulBeanContext.getDelegate()
           
 StatefulBeanContext StatefulBeanContext.getUltimateContainedIn()
           
 StatefulBeanContext ProxiedStatefulBeanContext.getUltimateContainedIn()
           
 StatefulBeanContext StatefulBeanContext.pushContainedIn()
           
 StatefulBeanContext ProxiedStatefulBeanContext.pushContainedIn()
           
 

Methods in org.jboss.ejb3.stateful that return types with arguments of type StatefulBeanContext
 List<StatefulBeanContext> StatefulBeanContext.getContains()
           
 List<StatefulBeanContext> ProxiedStatefulBeanContext.getContains()
           
 

Methods in org.jboss.ejb3.stateful with parameters of type StatefulBeanContext
 void StatefulBeanContext.addContains(StatefulBeanContext ctx)
           
 void ProxiedStatefulBeanContext.addContains(StatefulBeanContext ctx)
           
 void StatefulContainer.destroy(StatefulBeanContext ctx)
           
protected  void SessionSynchronizationInterceptor.registerSessionSynchronization(StatefulBeanContext ctx)
           
 void StatefulBeanContext.removeContains(StatefulBeanContext ctx)
           
 void ProxiedStatefulBeanContext.removeContains(StatefulBeanContext ctx)
           
 boolean StatefulBeanContext.scanForExtendedPersistenceContext(String id, StatefulBeanContext ignore)
           
 boolean ProxiedStatefulBeanContext.scanForExtendedPersistenceContext(String id, StatefulBeanContext ignore)
           
 

Constructors in org.jboss.ejb3.stateful with parameters of type StatefulBeanContext
ProxiedStatefulBeanContext(StatefulBeanContext delegate)
           
SessionSynchronizationInterceptor.SFSBSessionSynchronization(StatefulBeanContext ctx)
           
StatefulBeanContextReference(StatefulBeanContext beanContext)
           
StatefulSessionContextImpl(StatefulBeanContext beanContext)
           
 



Copyright © 2009 JBoss, a division of Red Hat, Inc.. All Rights Reserved.