Java Doc for DecoratingNavigationHandler.java in  » J2EE » spring-framework-2.5 » org » springframework » web » jsf » 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 » spring framework 2.5 » org.springframework.web.jsf 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.springframework.web.jsf.DecoratingNavigationHandler

DecoratingNavigationHandler
abstract public class DecoratingNavigationHandler extends NavigationHandler (Code)
Base class for JSF NavigationHandler implementations that want to be capable of decorating an original NavigationHandler.

Supports the standard JSF style of decoration (through a constructor argument) as well as an overloaded handleNavigation method with explicit NavigationHandler argument (passing in the original NavigationHandler). Subclasses are forced to implement this overloaded handleNavigation method. Standard JSF invocations will automatically delegate to the overloaded method, with the constructor-injected NavigationHandler as argument.
author:
   Juergen Hoeller
since:
   1.2.7
See Also:   DelegatingNavigationHandlerProxy




Constructor Summary
protected  DecoratingNavigationHandler()
     Create a DecoratingNavigationHandler without fixed original NavigationHandler.
protected  DecoratingNavigationHandler(NavigationHandler originalNavigationHandler)
     Create a DecoratingNavigationHandler with fixed original NavigationHandler.

Method Summary
final protected  voidcallNextHandlerInChain(FacesContext facesContext, String fromAction, String outcome, NavigationHandler originalNavigationHandler)
     Method to be called by subclasses when intending to delegate to the next handler in the NavigationHandler chain.
final public  NavigationHandlergetDecoratedNavigationHandler()
     Return the fixed original NavigationHandler decorated by this handler, if any (that is, if passed in through the constructor).
final public  voidhandleNavigation(FacesContext facesContext, String fromAction, String outcome)
     This implementation of the standard JSF handleNavigation method delegates to the overloaded variant, passing in constructor-injected NavigationHandler as argument.
abstract public  voidhandleNavigation(FacesContext facesContext, String fromAction, String outcome, NavigationHandler originalNavigationHandler)
     Special handleNavigation variant with explicit NavigationHandler argument.


Constructor Detail
DecoratingNavigationHandler
protected DecoratingNavigationHandler()(Code)
Create a DecoratingNavigationHandler without fixed original NavigationHandler.



DecoratingNavigationHandler
protected DecoratingNavigationHandler(NavigationHandler originalNavigationHandler)(Code)
Create a DecoratingNavigationHandler with fixed original NavigationHandler.
Parameters:
  originalNavigationHandler - the original NavigationHandler to decorate




Method Detail
callNextHandlerInChain
final protected void callNextHandlerInChain(FacesContext facesContext, String fromAction, String outcome, NavigationHandler originalNavigationHandler)(Code)
Method to be called by subclasses when intending to delegate to the next handler in the NavigationHandler chain. Will always call the most appropriate next handler, either the decorated NavigationHandler passed in as constructor argument or the original NavigationHandler as passed into this method - according to the position of this instance in the chain.

Will call the decorated NavigationHandler specified as constructor argument, if any. In case of a DecoratingNavigationHandler as target, the original NavigationHandler as passed into this method will be passed on to the next element in the chain: This ensures propagation of the original handler that the last element in the handler chain might delegate back to. In case of a standard NavigationHandler as target, the original handler will simply not get passed on; no delegating back to the original is possible further down the chain in that scenario.

If no decorated NavigationHandler specified as constructor argument, this instance is the last element in the chain. Hence, this method will call the original NavigationHandler as passed into this method. If no original NavigantionHandler has been passed in (for example if this instance is the last element in a chain with standard NavigationHandlers as earlier elements), this method corresponds to a no-op.
Parameters:
  facesContext - the current JSF context
Parameters:
  fromAction - the action binding expression that was evaluated to retrieve thespecified outcome, or null if the outcome was acquired by some other means
Parameters:
  outcome - the logical outcome returned by a previous invoked application action(which may be null)
Parameters:
  originalNavigationHandler - the original NavigationHandler,or null if none




getDecoratedNavigationHandler
final public NavigationHandler getDecoratedNavigationHandler()(Code)
Return the fixed original NavigationHandler decorated by this handler, if any (that is, if passed in through the constructor).



handleNavigation
final public void handleNavigation(FacesContext facesContext, String fromAction, String outcome)(Code)
This implementation of the standard JSF handleNavigation method delegates to the overloaded variant, passing in constructor-injected NavigationHandler as argument.
See Also:   DecoratingNavigationHandler.handleNavigation(javax.faces.context.FacesContext,String,String,javax.faces.application.NavigationHandler)



handleNavigation
abstract public void handleNavigation(FacesContext facesContext, String fromAction, String outcome, NavigationHandler originalNavigationHandler)(Code)
Special handleNavigation variant with explicit NavigationHandler argument. Either called directly, by code with an explicit original handler, or called from the standard handleNavigation method, as plain JSF-defined NavigationHandler.

Implementations should invoke callNextHandlerInChain to delegate to the next handler in the chain. This will always call the most appropriate next handler (see callNextHandlerInChain javadoc). Alternatively, the decorated NavigationHandler or the passed-in original NavigationHandler can also be called directly; however, this is not as flexible in terms of reacting to potential positions in the chain.
Parameters:
  facesContext - the current JSF context
Parameters:
  fromAction - the action binding expression that was evaluated to retrieve thespecified outcome, or null if the outcome was acquired by some other means
Parameters:
  outcome - the logical outcome returned by a previous invoked application action(which may be null)
Parameters:
  originalNavigationHandler - the original NavigationHandler,or null if none
See Also:   DecoratingNavigationHandler.callNextHandlerInChain




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.