Source Code Cross Referenced for AliasInterceptor.java in  » J2EE » webwork-2.2.6 » com » opensymphony » xwork » interceptor » 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.interceptor 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright (c) 2002-2006 by OpenSymphony
003:         * All rights reserved.
004:         */
005:
006:        package com.opensymphony.xwork.interceptor;
007:
008:        import com.opensymphony.xwork.ActionContext;
009:        import com.opensymphony.xwork.ActionInvocation;
010:        import com.opensymphony.xwork.config.entities.ActionConfig;
011:        import com.opensymphony.xwork.util.OgnlValueStack;
012:        import org.apache.commons.logging.Log;
013:        import org.apache.commons.logging.LogFactory;
014:
015:        import java.util.Iterator;
016:        import java.util.Map;
017:
018:        /**
019:         * <!-- START SNIPPET: description -->
020:         *
021:         * The aim of this Interceptor is to alias a named parameter to a different named parameter. By acting as the glue
022:         * between actions sharing similiar parameters (but with different names), it can help greatly with action chaining.
023:         *
024:         * <p/>  Action's alias expressions should be in the form of  #{ "name1" : "alias1", "name2" : "alias2" }. This means
025:         * that assuming an action (or something else in the stack) has a value for the expression named <i>name1</i> and the
026:         * action this interceptor is applied to has a setter named <i>alias1</i>, <i>alias1</i> will be set with the value from
027:         * <i>name1</i>.
028:         *
029:         * <!-- END SNIPPET: description -->
030:         *
031:         * <p/> <u>Interceptor parameters:</u>
032:         *
033:         * <!-- START SNIPPET: parameters -->
034:         *
035:         * <ul>
036:         *
037:         * <li>aliasesKey (optional) - the name of the action parameter to look for the alias map (by default this is
038:         * <i>aliases</i>).</li>
039:         *
040:         * </ul>
041:         *
042:         * <!-- END SNIPPET: parameters -->
043:         *
044:         * <p/> <u>Extending the interceptor:</u>
045:         *
046:         * <p/>
047:         *
048:         * <!-- START SNIPPET: extending -->
049:         *
050:         * This interceptor does not have any known extension points.
051:         *
052:         * <!-- END SNIPPET: extending -->
053:         *
054:         * <p/> <u>Example code:</u>
055:         *
056:         * <pre>
057:         * <!-- START SNIPPET: example -->
058:         * &lt;action name="someAction" class="com.examples.SomeAction"&gt;
059:         *     &lt;!-- The value for the foo parameter will be applied as if it were named bar --&gt;
060:         *     &lt;param name="aliases"&gt;#{ 'foo' : 'bar' }&lt;/param&gt;
061:         *
062:         *     &lt;!-- note: the alias interceptor is included with the defaultStack in webwork-default.xml --&gt;
063:         *     &lt;interceptor-ref name="alias"/&gt;
064:         *     &lt;interceptor-ref name="basicStack"/&gt;
065:         *     &lt;result name="success"&gt;good_result.ftl&lt;/result&gt;
066:         * &lt;/action&gt;
067:         * <!-- END SNIPPET: example -->
068:         * </pre>
069:         *
070:         * @author Matthew Payne
071:         */
072:        public class AliasInterceptor extends AroundInterceptor {
073:            private static final Log log = LogFactory
074:                    .getLog(AliasInterceptor.class);
075:            private static final String DEFAULT_ALIAS_KEY = "aliases";
076:
077:            protected String aliasesKey = DEFAULT_ALIAS_KEY;
078:
079:            public void setAliasesKey(String aliasesKey) {
080:                this .aliasesKey = aliasesKey;
081:            }
082:
083:            public void destroy() {
084:            }
085:
086:            public void init() {
087:            }
088:
089:            protected void before(ActionInvocation invocation) throws Exception {
090:                ActionConfig config = invocation.getProxy().getConfig();
091:                ActionContext ac = invocation.getInvocationContext();
092:
093:                // get the action's parameters
094:                final Map parameters = config.getParams();
095:
096:                if (parameters.containsKey(aliasesKey)) {
097:
098:                    String aliasExpression = (String) parameters
099:                            .get(aliasesKey);
100:                    OgnlValueStack stack = ac.getValueStack();
101:                    Object obj = stack.findValue(aliasExpression);
102:
103:                    if (obj != null && obj instanceof  Map) {
104:                        // override
105:                        Map aliases = (Map) obj;
106:                        Iterator itr = aliases.entrySet().iterator();
107:                        while (itr.hasNext()) {
108:                            Map.Entry entry = (Map.Entry) itr.next();
109:                            String name = entry.getKey().toString();
110:                            String alias = (String) entry.getValue();
111:                            Object value = stack.findValue(name);
112:                            if (null == value) {
113:                                // workaround
114:                                Map contextParameters = (Map) stack
115:                                        .getContext().get("parameters");
116:
117:                                if (null != contextParameters) {
118:                                    value = contextParameters.get(name);
119:                                }
120:                            }
121:                            if (null != value) {
122:                                stack.setValue(alias, value);
123:                            }
124:                        }
125:                    } else {
126:                        log.debug("invalid alias expression:" + aliasesKey);
127:                    }
128:                }
129:            }
130:
131:            protected void after(ActionInvocation invocation, String result)
132:                    throws Exception {
133:            }
134:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.