Source Code Cross Referenced for ServletPathMapper.java in  » Library » Apache-commons-chain-1.1-src » org » apache » commons » chain » web » servlet » 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 » Library » Apache commons chain 1.1 src » org.apache.commons.chain.web.servlet 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright 1999-2004 The Apache Software Foundation
03:         *
04:         * Licensed under the Apache License, Version 2.0 (the "License");
05:         * you may not use this file except in compliance with the License.
06:         * You may obtain a copy of the License at
07:         *
08:         *     http://www.apache.org/licenses/LICENSE-2.0
09:         *
10:         * Unless required by applicable law or agreed to in writing, software
11:         * distributed under the License is distributed on an "AS IS" BASIS,
12:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13:         * See the License for the specific language governing permissions and
14:         * limitations under the License.
15:         */
16:        package org.apache.commons.chain.web.servlet;
17:
18:        import javax.servlet.http.HttpServletRequest;
19:        import org.apache.commons.chain.Catalog;
20:        import org.apache.commons.chain.Command;
21:        import org.apache.commons.chain.Context;
22:
23:        /**
24:         * <p>{@link Command} that uses the "servlet path" component of the request URI
25:         * to select a {@link Command} from the appropriate {@link Catalog}, and
26:         * execute it.  To use this command, you would typically map an instance
27:         * of {@link ChainProcessor} to an extension pattern like "*.execute" and
28:         * then arrange that this is the default command to be executed.  In such
29:         * an environment, a request for a context relative URI of "/foo.execute"
30:         * would cause the "/foo.execute" command to be loaded and executed.</p>
31:         *
32:         * @author Craig R. McClanahan
33:         */
34:
35:        public class ServletPathMapper implements  Command {
36:
37:            // ------------------------------------------------------ Instance Variables
38:
39:            private String catalogKey = ChainProcessor.CATALOG_DEFAULT;
40:
41:            // -------------------------------------------------------------- Properties
42:
43:            /**
44:             * <p>Return the context key under which our {@link Catalog} has been
45:             * stored.</p>
46:             *
47:             * @return The context key for the Catalog.
48:             */
49:            public String getCatalogKey() {
50:
51:                return (this .catalogKey);
52:
53:            }
54:
55:            /**
56:             * <p>Set the context key under which our {@link Catalog} has been
57:             * stored.</p>
58:             *
59:             * @param catalogKey The new catalog key
60:             */
61:            public void setCatalogKey(String catalogKey) {
62:
63:                this .catalogKey = catalogKey;
64:
65:            }
66:
67:            // --------------------------------------------------------- Command Methods
68:
69:            /**
70:             * <p>Look up the servlet path information for this request, and use it to
71:             * select an appropriate {@link Command} to be executed.
72:             *
73:             * @param context Context for the current request
74:             * @return The result of executing the Command for the servlet path.
75:             * @throws Exception if there is a problem executing the Command for
76:             *  the servlet path.
77:             */
78:            public boolean execute(Context context) throws Exception {
79:
80:                // Look up the servlet path for this request
81:                ServletWebContext swcontext = (ServletWebContext) context;
82:                HttpServletRequest request = swcontext.getRequest();
83:                String servletPath = (String) request
84:                        .getAttribute("javax.servlet.include.servlet_path");
85:                if (servletPath == null) {
86:                    servletPath = request.getServletPath();
87:                }
88:
89:                // Map to the Command specified by the extra path info
90:                Catalog catalog = (Catalog) context.get(getCatalogKey());
91:                Command command = catalog.getCommand(servletPath);
92:                return (command.execute(context));
93:
94:            }
95:
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.