org.jboss.weld.context.beanstore
Interface BoundBeanStore

All Superinterfaces:
BeanStore, Iterable<String>
All Known Implementing Classes:
AbstractSessionBeanStore, AttributeBeanStore, EagerSessionBeanStore, InvocationContextBeanStore, LazyCyclicSessionBeanStore, LazySessionBeanStore, MapBeanStore, RequestBeanStore

public interface BoundBeanStore
extends BeanStore

A bean store may be bound to some external data store, for example a Http Session.

Author:
Pete Muir
See Also:
BoundContext

Method Summary
 boolean attach()
          Attach the context
 boolean detach()
          Detach the context
 boolean isAttached()
          Return true if the bean store is attached
 
Methods inherited from interface org.jboss.weld.context.beanstore.BeanStore
clear, contains, get, iterator, lock, put
 

Method Detail

detach

boolean detach()
Detach the context

Returns:
true if the bean store was detached, or false if the bean store is already detached

attach

boolean attach()
Attach the context

Returns:
true if the bean store was attached, or false if the bean store is already attached

isAttached

boolean isAttached()
Return true if the bean store is attached

Returns:
true if the bean store is attached or false if the bean store has been detached


Copyright © 2013 Seam Framework. All Rights Reserved.