Java Doc for ActionConfig.java in  » J2EE » webwork-2.2.6 » com » opensymphony » xwork » config » entities » 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 » J2EE » webwork 2.2.6 » com.opensymphony.xwork.config.entities 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.opensymphony.xwork.util.location.Located
      com.opensymphony.xwork.config.entities.ActionConfig

ActionConfig
public class ActionConfig extends Located implements InterceptorListHolder,Parameterizable,Serializable(Code)
Contains everything needed to configure and execute an action:
  • methodName - the method name to execute on the action. If this is null, the Action will be cast to the Action Interface and the execute() method called
  • clazz - the class name for the action
  • params - the params to be set for this action just before execution
  • results - the result map {String -> View class}
  • resultParameters - params for results {String -> Map}
  • typeConverter - the Ognl TypeConverter to use when getting/setting properties

author:
   Mike
author:
   Rainer Hermanns
version:
   $Revision: 1531 $


Field Summary
protected  StringclassName
    
protected  ListexceptionMappings
    
protected  ListexternalRefs
    
protected  Listinterceptors
    
protected  StringmethodName
    
protected  StringpackageName
    
protected  Mapparams
    
protected  Mapresults
    

Constructor Summary
public  ActionConfig()
    
public  ActionConfig(String methodName, Class clazz, Map parameters, Map results, List interceptors)
    
public  ActionConfig(String methodName, Class clazz, Map parameters, Map results, List interceptors, List exceptionMappings)
    
public  ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors)
    
public  ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors, List exceptionMappings)
    
public  ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors, List externalRefs, String packageName)
    
public  ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors, List externalRefs, List exceptionMappings, String packageName)
    

Method Summary
public  voidaddExceptionMapping(ExceptionMappingConfig exceptionMapping)
    
public  voidaddExceptionMappings(List exceptionMappings)
    
public  voidaddExternalRef(ExternalReference reference)
    
public  voidaddExternalRefs(List externalRefs)
    
public  voidaddInterceptor(InterceptorMapping interceptor)
    
public  voidaddInterceptors(List interceptors)
    
public  voidaddParam(String name, Object value)
    
public  voidaddResultConfig(ResultConfig resultConfig)
    
public  booleanequals(Object o)
    
public  StringgetClassName()
    
public  ListgetExceptionMappings()
    
public  ListgetExternalRefs()
    
public  ListgetInterceptors()
    
public  StringgetMethodName()
    
public  StringgetPackageName()
    
public  MapgetParams()
    
public  MapgetResults()
    
public  inthashCode()
    
public  voidsetClassName(String className)
    
public  voidsetMethodName(String methodName)
    
public  voidsetPackageName(String packageName)
    
public  voidsetParams(Map params)
    
public  voidsetResults(Map results)
    
public  StringtoString()
    

Field Detail
className
protected String className(Code)



exceptionMappings
protected List exceptionMappings(Code)



externalRefs
protected List externalRefs(Code)



interceptors
protected List interceptors(Code)



methodName
protected String methodName(Code)



packageName
protected String packageName(Code)



params
protected Map params(Code)



results
protected Map results(Code)




Constructor Detail
ActionConfig
public ActionConfig()(Code)



ActionConfig
public ActionConfig(String methodName, Class clazz, Map parameters, Map results, List interceptors)(Code)



ActionConfig
public ActionConfig(String methodName, Class clazz, Map parameters, Map results, List interceptors, List exceptionMappings)(Code)



ActionConfig
public ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors)(Code)



ActionConfig
public ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors, List exceptionMappings)(Code)



ActionConfig
public ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors, List externalRefs, String packageName)(Code)



ActionConfig
public ActionConfig(String methodName, String className, Map parameters, Map results, List interceptors, List externalRefs, List exceptionMappings, String packageName)(Code)




Method Detail
addExceptionMapping
public void addExceptionMapping(ExceptionMappingConfig exceptionMapping)(Code)



addExceptionMappings
public void addExceptionMappings(List exceptionMappings)(Code)



addExternalRef
public void addExternalRef(ExternalReference reference)(Code)



addExternalRefs
public void addExternalRefs(List externalRefs)(Code)



addInterceptor
public void addInterceptor(InterceptorMapping interceptor)(Code)



addInterceptors
public void addInterceptors(List interceptors)(Code)



addParam
public void addParam(String name, Object value)(Code)



addResultConfig
public void addResultConfig(ResultConfig resultConfig)(Code)



equals
public boolean equals(Object o)(Code)



getClassName
public String getClassName()(Code)



getExceptionMappings
public List getExceptionMappings()(Code)



getExternalRefs
public List getExternalRefs()(Code)



getInterceptors
public List getInterceptors()(Code)



getMethodName
public String getMethodName()(Code)
Returns name of the action method name of the method to execute



getPackageName
public String getPackageName()(Code)
Returns the packageName.



getParams
public Map getParams()(Code)



getResults
public Map getResults()(Code)



hashCode
public int hashCode()(Code)



setClassName
public void setClassName(String className)(Code)



setMethodName
public void setMethodName(String methodName)(Code)



setPackageName
public void setPackageName(String packageName)(Code)

Parameters:
  packageName - The packageName to set.



setParams
public void setParams(Map params)(Code)



setResults
public void setResults(Map results)(Code)



toString
public String toString()(Code)



Fields inherited from com.opensymphony.xwork.util.location.Located
protected Location location(Code)(Java Doc)

Methods inherited from com.opensymphony.xwork.util.location.Located
public Location getLocation()(Code)(Java Doc)
public void setLocation(Location loc)(Code)(Java Doc)

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.