Java Doc for ExternalContext.java in  » Workflow-Engines » spring-webflow-1.0.4 » org » springframework » webflow » context » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Workflow Engines » spring webflow 1.0.4 » org.springframework.webflow.context 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.webflow.context.ExternalContext

All known Subclasses:   org.springframework.webflow.executor.jsf.JsfExternalContext,  org.springframework.webflow.context.portlet.PortletExternalContext,  org.springframework.webflow.context.servlet.ServletExternalContext,  org.springframework.webflow.test.MockExternalContext,
ExternalContext
public interface ExternalContext (Code)
A facade that provides normalized access to an external system that has interacted with Spring Web Flow.

This context object provides a normalized interface for internal web flow artifacts to use to reason on and manipulate the state of an external actor calling into SWF to execute flows. It represents the context about a single, external client request to manipulate a flow execution.

The design of this interface was inspired by JSF's own ExternalContext abstraction and shares the same name for consistency. If a particular external client type does not support all methods defined by this interface, they can just be implemented as returning an empty map or null.
author:
   Keith Donald
author:
   Erwin Vervaet





Method Summary
public  SharedAttributeMapgetApplicationMap()
     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.
public  StringgetContextPath()
     Returns the path (or identifier) of the application that is executing. the application context path (e.g.
public  StringgetDispatcherPath()
     Returns the path (or identifier) of the dispatcher within the application that dispatched this request. the dispatcher path (e.g.
public  SharedAttributeMapgetGlobalSessionMap()
     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.

Note: most external context implementations do not distinguish between the concept of a "local" user session scope and a "global" session scope.

public  MutableAttributeMapgetRequestMap()
     Provides access to the external request attribute map, providing a storage for data local to the current user request and accessible to both internal and external SWF artifacts.
public  ParameterMapgetRequestParameterMap()
     Provides access to the parameters associated with the user request that led to SWF being called.
public  StringgetRequestPathInfo()
     Returns the path info of this external request.
public  SharedAttributeMapgetSessionMap()
     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.



Method Detail
getApplicationMap
public SharedAttributeMap getApplicationMap()(Code)
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. the mutable application attribute map



getContextPath
public String getContextPath()(Code)
Returns the path (or identifier) of the application that is executing. the application context path (e.g. "/myapp")



getDispatcherPath
public String getDispatcherPath()(Code)
Returns the path (or identifier) of the dispatcher within the application that dispatched this request. the dispatcher path (e.g. "/dispatcher")



getGlobalSessionMap
public SharedAttributeMap getGlobalSessionMap()(Code)
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.

Note: most external context implementations do not distinguish between the concept of a "local" user session scope and a "global" session scope. The Portlet world does, but not the Servlet for example. In those cases calling this method returns the same map as calling ExternalContext.getSessionMap() . the mutable global session attribute map




getRequestMap
public MutableAttributeMap getRequestMap()(Code)
Provides access to the external request attribute map, providing a storage for data local to the current user request and accessible to both internal and external SWF artifacts. the mutable request attribute map



getRequestParameterMap
public ParameterMap getRequestParameterMap()(Code)
Provides access to the parameters associated with the user request that led to SWF being called. This map is expected to be immutable and cannot be changed. the immutable request parameter map



getRequestPathInfo
public String getRequestPathInfo()(Code)
Returns the path info of this external request. Could be null. the request path info (e.g. "/flows.htm")



getSessionMap
public SharedAttributeMap getSessionMap()(Code)
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. the mutable session attribute map



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.