Java Doc for AbstractAction.java in  » Workflow-Engines » spring-webflow-1.0.4 » org » springframework » webflow » action » 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.action 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.webflow.action.AbstractAction

All known Subclasses:   org.springframework.webflow.action.AttributeMapperAction,  org.springframework.webflow.action.AbstractBeanInvokingAction,  org.springframework.webflow.action.CompositeAction,  org.springframework.webflow.action.SetAction,  org.springframework.webflow.action.EvaluateAction,  org.springframework.webflow.action.MultiAction,  org.springframework.webflow.action.portlet.SetPortletModeAction,
AbstractAction
abstract public class AbstractAction implements Action,InitializingBean(Code)
Base action that provides assistance commonly needed by action implementations. This includes:
  • Implementing InitializingBean to receive an init callback when deployed within a Spring bean factory.
  • Exposing convenient event factory methods to create common result Event objects such as "success" and "error".
  • A hook for inserting action pre and post execution logic.

author:
   Keith Donald
author:
   Erwin Vervaet


Field Summary
final protected  Loglogger
     Logger, usable in subclasses.


Method Summary
public  voidafterPropertiesSet()
    
abstract protected  EventdoExecute(RequestContext context)
     Template hook method subclasses should override to encapsulate their specific action execution logic.
protected  voiddoPostExecute(RequestContext context)
     Post-action execution hook, subclasses may override.
protected  EventdoPreExecute(RequestContext context)
     Pre-action-execution hook, subclasses may override.
protected  Eventerror()
     Returns an "error" result event.
protected  Eventerror(Exception e)
     Returns an "error" result event caused by the provided exception.
final public  Eventexecute(RequestContext context)
    
protected  StringgetActionNameForLogging()
     Internal helper to return the name of this action for logging purposes.
public  EventFactorySupportgetEventFactorySupport()
     Returns the helper delegate for creating action execution result events.
protected  voidinitAction()
     Action initializing callback, may be overriden by subclasses to perform custom initialization logic.
protected  Eventno()
     Returns a "no" result event.
protected  Eventresult(boolean booleanResult)
     Returns yes() if the boolean result is true, no() if false.
protected  Eventresult(String eventId)
     Returns a result event for this action with the specified identifier.
protected  Eventresult(String eventId, AttributeMap resultAttributes)
     Returns a result event for this action with the specified identifier and the specified set of attributes.
protected  Eventresult(String eventId, String resultAttributeName, Object resultAttributeValue)
     Returns a result event for this action with the specified identifier and a single attribute.
protected  Eventsuccess()
     Returns a "success" result event.
protected  Eventsuccess(Object result)
     Returns a "success" result event with the provided result object as a parameter.
protected  Eventyes()
     Returns a "yes" result event.

Field Detail
logger
final protected Log logger(Code)
Logger, usable in subclasses.





Method Detail
afterPropertiesSet
public void afterPropertiesSet() throws Exception(Code)



doExecute
abstract protected Event doExecute(RequestContext context) throws Exception(Code)
Template hook method subclasses should override to encapsulate their specific action execution logic.
Parameters:
  context - the action execution context, for accessing and settingdata in "flow scope" or "request scope" the action result event
throws:
  Exception - an unrecoverable exception occured, eitherchecked or unchecked



doPostExecute
protected void doPostExecute(RequestContext context) throws Exception(Code)
Post-action execution hook, subclasses may override. Will only be called if doExecute() was called, e.g. when doPreExecute() returned null.

This implementation does nothing.
Parameters:
  context - the action execution context, for accessing and settingdata in "flow scope" or "request scope"
throws:
  Exception - an unrecoverable exception occured, eitherchecked or unchecked




doPreExecute
protected Event doPreExecute(RequestContext context) throws Exception(Code)
Pre-action-execution hook, subclasses may override. If this method returns a non-null event, the doExecute() method will not be called and the returned event will be used to select a transition to trigger in the calling action state. If this method returns null, doExecute() will be called to obtain an action result event.

This implementation just returns null.
Parameters:
  context - the action execution context, for accessing and settingdata in "flow scope" or "request scope" the non-null action result, in which case thedoExecute() will not be called, or null ifthe doExecute() method should be called to obtain theaction result
throws:
  Exception - an unrecoverable exception occured, eitherchecked or unchecked




error
protected Event error()(Code)
Returns an "error" result event.



error
protected Event error(Exception e)(Code)
Returns an "error" result event caused by the provided exception.
Parameters:
  e - the exception that caused the error event, to be configured asan event attribute



execute
final public Event execute(RequestContext context) throws Exception(Code)



getActionNameForLogging
protected String getActionNameForLogging()(Code)
Internal helper to return the name of this action for logging purposes. Defaults to the short class name.
See Also:   ClassUtils.getShortName(java.lang.Class)



getEventFactorySupport
public EventFactorySupport getEventFactorySupport()(Code)
Returns the helper delegate for creating action execution result events. the event factory support



initAction
protected void initAction() throws Exception(Code)
Action initializing callback, may be overriden by subclasses to perform custom initialization logic.

Keep in mind that this hook will only be invoked when this action is deployed in a Spring application context since it uses the Spring InitializingBean mechanism to trigger action initialisation.




no
protected Event no()(Code)
Returns a "no" result event.



result
protected Event result(boolean booleanResult)(Code)
Returns yes() if the boolean result is true, no() if false.
Parameters:
  booleanResult - the boolean yes or no



result
protected Event result(String eventId)(Code)
Returns a result event for this action with the specified identifier. Typically called as part of return, for example:
 protected Event doExecute(RequestContext context) {
 // do some work
 if (some condition) {
 return result("success");
 } else {
 return result("error");
 }
 }
 
Consider calling the error() or success() factory methods for returning common results.
Parameters:
  eventId - the result event identifier the action result event



result
protected Event result(String eventId, AttributeMap resultAttributes)(Code)
Returns a result event for this action with the specified identifier and the specified set of attributes. Typically called as part of return, for example:
 protected Event doExecute(RequestContext context) {
 // do some work
 AttributeMap resultAttributes = new AttributeMap();
 resultAttributes.put("name", "value");
 if (some condition) {
 return result("success", resultAttributes);
 } else {
 return result("error", resultAttributes);
 }
 }
 
Consider calling the error() or success() factory methods for returning common results.
Parameters:
  eventId - the result event identifier
Parameters:
  resultAttributes - the event attributes the action result event



result
protected Event result(String eventId, String resultAttributeName, Object resultAttributeValue)(Code)
Returns a result event for this action with the specified identifier and a single attribute.
Parameters:
  eventId - the result id
Parameters:
  resultAttributeName - the attribute name
Parameters:
  resultAttributeValue - the attribute value the action result event



success
protected Event success()(Code)
Returns a "success" result event.



success
protected Event success(Object result)(Code)
Returns a "success" result event with the provided result object as a parameter.
Parameters:
  result - the action success result



yes
protected Event yes()(Code)
Returns a "yes" result event.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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