com.opensymphony.xwork.interceptor

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 » J2EE » webwork 2.2.6 » com.opensymphony.xwork.interceptor 
com.opensymphony.xwork.interceptor
Java Source File NameTypeComment
AbstractLifecycleInterceptor.javaClass
AliasInterceptor.javaClass The aim of this Interceptor is to alias a named parameter to a different named parameter.
AroundInterceptor.javaClass An abstract interceptor that provides simple access to before/after callouts.
ChainingInterceptor.javaClass An interceptor that copies all the properties of every object in the value stack to the currently executing object, except for any object that implements Unchainable .
ConversionErrorInterceptor.javaClass This interceptor adds any error found in the ActionContext 's conversionErrors map as a field error (provided that the action implements ValidationAware ).
DefaultWorkflowInterceptor.javaClass An interceptor that does some basic validation workflow before allowing the interceptor chain to continue.

This interceptor does nothing if the name of the method being invoked is specified in the excludeMethods parameter.

ExceptionHolder.javaClass A simple wrapper around an exception, providing an easy way to print out the stack trace of the exception as well as a way to get a handle on the exception itself.
author:
   Matthew E.
ExceptionMappingInterceptor.javaClass This interceptor forms the core functionality of the exception handling feature.
ExternalReferencesInterceptor.javaClass TODO: Give a description of the Interceptor.
I18nInterceptor.javaClass An interceptor that handles setting the locale specified in a session as the locale for the current action request. In addition, this interceptor will look for a specific HTTP request parameter and set the locale to whatever value is provided.
Interceptor.javaInterface An interceptor is a stateless class that follows the interceptor pattern, as found in javax.servlet.Filter and in AOP languages.

Interceptors are objects that dynamically intercept Action invocations.

LoggingInterceptor.javaClass This interceptor logs the the start and end of the execution an action (in English-only, not internationalized).
MethodFilterInterceptor.javaClass An abstract Interceptor that is applied to selectively according to specified included/excluded method lists.

Setable parameters are as follows:

  • excludeMethods - methods name to be excluded
  • includeMethods - methods name to be included

NOTE: If method name are available in both includeMethods and excludeMethods, it will still be considered as an included method.

MethodFilterInterceptorUtil.javaClass Utility class contains common methods used by com.opensymphony.xwork.interceptor.MethodFilterInterceptorterceptor and org.apache.struts.action2.components.Form .
ModelDrivenInterceptor.javaClass Watches for ModelDriven actions and adds the action's model on to the value stack.
NoParameters.javaInterface This marker interface should be implemented by actions that do not want any parameters set on them automatically (by the ParametersActionFactoryProxy) This may be useful if one is using the action tag and want to supply the parameters to the action manually using the param tag.
ParameterFilterInterceptor.javaClass

The Parameter Filter Interceptor blocks parameters from getting to the rest of the stack or your action.

ParameterNameAware.javaInterface This interface is implemented by actions that want to declare acceptable parameters.
ParameterRemoverInterceptor.javaClass This is a simple WebWork interceptor that allows parameters (matching one of the paramNames attribute csv value) to be removed from the parameter map if they match a certain value (matching one of the paramValues attribute csv value), before they are set on the action.
ParametersInterceptor.javaClass This interceptor sets all parameters on the value stack.

This interceptor gets all parameters from ActionContext.getParameters and sets them on the value stack by calling OgnlValueStack.setValue(StringObject) , typically resulting in the values submitted in a form request being applied to an action in the value stack.

PrefixMethodInvocationUtil.javaClass A utility class for invoking prefixed methods in action class.
PrepareInterceptor.javaClass This interceptor calls prepare() on actions which implement Preparable .
PreResultListener.javaInterface PreResultListeners may be registered with an ActionInvocation to get a callback after the Action has been executed but before the Result is executed.
StaticParametersInterceptor.javaClass This interceptor populates the action with the static parameters defined in the action configuration.
TimerInterceptor.javaClass This interceptor logs the amount of time in milliseconds.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.