Uses of Interface
org.springframework.webflow.core.collection.SharedAttributeMap

Packages that use SharedAttributeMap
org.springframework.webflow.context The external context subsystem for accessing the environment of a client that has called into Spring Web Flow. 
org.springframework.webflow.context.portlet The representation of a client request into Spring Web Flow from a JSR-168 Portlet environment. 
org.springframework.webflow.context.servlet The representation of a client request into Spring Web Flow from an HTTP Servlet environment. 
org.springframework.webflow.core.collection Core element collection types used within Spring Web Flow. 
org.springframework.webflow.executor.jsf The integration layer between Spring Web Flow and Java Server Faces (JSF). 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
 

Uses of SharedAttributeMap in org.springframework.webflow.context
 

Methods in org.springframework.webflow.context that return SharedAttributeMap
 SharedAttributeMap ExternalContext.getApplicationMap()
          Provides access to the external application map, providing a storage for data local to the current user application and accessible to both internal and external SWF artifacts.
 SharedAttributeMap ExternalContext.getGlobalSessionMap()
          Provides access to the global external session map, providing a storage for data globally accross the user session and accessible to both internal and external SWF artifacts.
 SharedAttributeMap ExternalContext.getSessionMap()
          Provides access to the external session map, providing a storage for data local to the current user session and accessible to both internal and external SWF artifacts.
 

Uses of SharedAttributeMap in org.springframework.webflow.context.portlet
 

Methods in org.springframework.webflow.context.portlet that return SharedAttributeMap
 SharedAttributeMap PortletExternalContext.getApplicationMap()
           
 SharedAttributeMap PortletExternalContext.getGlobalSessionMap()
           
 SharedAttributeMap PortletExternalContext.getSessionMap()
           
 

Uses of SharedAttributeMap in org.springframework.webflow.context.servlet
 

Methods in org.springframework.webflow.context.servlet that return SharedAttributeMap
 SharedAttributeMap ServletExternalContext.getApplicationMap()
           
 SharedAttributeMap ServletExternalContext.getGlobalSessionMap()
           
 SharedAttributeMap ServletExternalContext.getSessionMap()
           
 

Uses of SharedAttributeMap in org.springframework.webflow.core.collection
 

Classes in org.springframework.webflow.core.collection that implement SharedAttributeMap
 class LocalSharedAttributeMap
          An attribute map that exposes a mutex that application code can synchronize on.
 

Uses of SharedAttributeMap in org.springframework.webflow.executor.jsf
 

Methods in org.springframework.webflow.executor.jsf that return SharedAttributeMap
 SharedAttributeMap JsfExternalContext.getApplicationMap()
           
 SharedAttributeMap JsfExternalContext.getGlobalSessionMap()
           
 SharedAttributeMap JsfExternalContext.getSessionMap()
           
 

Uses of SharedAttributeMap in org.springframework.webflow.test
 

Methods in org.springframework.webflow.test that return SharedAttributeMap
 SharedAttributeMap MockExternalContext.getApplicationMap()
           
 SharedAttributeMap MockExternalContext.getGlobalSessionMap()
           
 SharedAttributeMap MockExternalContext.getSessionMap()
           
 

Methods in org.springframework.webflow.test with parameters of type SharedAttributeMap
 void MockExternalContext.setApplicationMap(SharedAttributeMap applicationMap)
          Set the application attribute map.
 void MockExternalContext.setGlobalSessionMap(SharedAttributeMap globalSessionMap)
          Set the global session attribute map.
 void MockExternalContext.setSessionMap(SharedAttributeMap sessionMap)
          Set the session attribute map.
 



Copyright © 2009 Spring Framework. All Rights Reserved.