org.apache.struts.action

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 » Web Framework » struts 1.3.8 » org.apache.struts.action 
org.apache.struts.action
Java Source File NameTypeComment
Action.javaClass

An Action is an adapter between the contents of an incoming HTTP request and the corresponding business logic that should be executed to process this request.

ActionErrors.javaClass

A class that encapsulates the error messages being reported by the validate() method of an ActionForm.

ActionForm.javaClass

An ActionForm is a JavaBean optionally associated with one or more ActionMappings.

ActionFormBean.javaClass

An ActionFormBean is the definition of a form bean that is loaded from a <form-bean> element in the Struts configuration file.

ActionForward.javaClass

An ActionForward represents a destination to which the controller, RequestProcessor, might be directed to perform a RequestDispatcher.forward or HttpServletResponse.sendRedirect to, as a result of processing activities of an Action class.

ActionMapping.javaClass

An ActionMapping represents the information that the controller, RequestProcessor, knows about the mapping of a particular request to an instance of a particular Action class.

ActionMessage.javaClass
ActionMessages.javaClass

A class that encapsulates messages.

ActionRedirect.javaClass

A subclass of ActionForward which is designed for use in redirecting requests, with support for adding parameters at runtime.

ActionServlet.javaClass

ActionServlet provides the "controller" in the Model-View-Controller (MVC) design pattern for web applications that is commonly known as "Model 2".

ActionServletWrapper.javaClass

Provide a wrapper around an ActionServlet to expose only those methods needed by other objects.

DynaActionForm.javaClass

Specialized subclass of ActionForm that allows the creation of form beans with dynamic sets of properties, without requiring the developer to create a Java class for each type of form bean.

USAGE NOTE - Since Struts 1.1, the reset method no longer initializes property values to those specified in <form-property> elements in the Struts module configuration file.

DynaActionFormClass.javaClass

Implementation of DynaClass for DynaActionForm classes that allow developers to define ActionForms without having to individually code all of the classes.

ExceptionHandler.javaClass
ForwardingActionForward.javaClass
InvalidCancelException.javaClass

Thrown when a token generated by the Cancel tag is found in the request, but the cancellable property for the Action Mapping is not set.

PlugIn.javaInterface

A PlugIn is a configuration wrapper for a module-specific resource or service that needs to be notified about application startup and application shutdown events (corresponding to when the container calls init and destroy on the corresponding ActionServlet instance).

RedirectingActionForward.javaClass
RequestActionMapping.javaClass
RequestProcessor.javaClass

RequestProcessor contains the processing logic that the ActionServlet performs as it receives each servlet request from the container.

SessionActionMapping.javaClass
TestActionMessage.javaClass Unit tests for the org.apache.struts.action.ActionMessage class.
TestActionMessages.javaClass Unit tests for the org.apache.struts.action.ActionMessages class.
TestActionRedirect.javaClass
TestActionServlet.javaClass Suite of unit tests for the org.apache.struts.action.ActionServlet class.
TestDynaActionForm.javaClass Suite of unit tests for the org.apache.struts.action.DynaActionForm class.
TestDynaActionFormClass.javaClass Suite of unit tests for the org.apache.struts.action.DynaActionFormClass class.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.