Java Doc for DecorationValve.java in  » Portal » jetspeed-2.1.3 » org » apache » jetspeed » decoration » 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 » Portal » jetspeed 2.1.3 » org.apache.jetspeed.decoration 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.jetspeed.pipeline.valve.AbstractValve
      org.apache.jetspeed.decoration.DecorationValve

DecorationValve
public class DecorationValve extends AbstractValve implements Valve(Code)
Assigns decorations and page actions to all of the portlet Fragments within the current request.
See Also:   org.apache.jetspeed.om.page.Fragment
See Also:   
See Also:   org.apache.jetspeed.om.page.Page
See Also:   org.apache.jetspeed.decoration.Decoration
See Also:   org.apache.jetspeed.decoration.LayoutDecoration
See Also:   org.apache.jetspeed.decoration.PortletDecoration
See Also:   org.apache.jetspeed.decoration.Theme
author:
   Scott T. Weaver
author:
   Vivek Kumar


Field Summary
final public static  StringACTION_IMAGE_EXTENSION_ATTR
    
final public static  StringIS_AJAX_DECORATION_REQUEST
    
protected  SecurityAccessControlleraccessController
    
final protected static  Loglog
    

Constructor Summary
public  DecorationValve(DecorationFactory decorationFactory, PortletWindowAccessor windowAccessor, SecurityAccessController accessController)
    
public  DecorationValve(DecorationFactory decorationFactory, PortletWindowAccessor windowAccessor, SecurityAccessController accessController, JetspeedContentCache cache)
    
public  DecorationValve(DecorationFactory decorationFactory, PortletWindowAccessor windowAccessor, SecurityAccessController accessController, JetspeedContentCache cache, boolean useSessionForThemeCaching)
    

Method Summary
public  booleangetAutoSwitchingForConfigMode()
    
public  booleangetAutoSwitchingToEditDefaultsModes()
    
public  DecoratorActionsFactorygetDecoratorActionsAdapter(Decoration decoration)
    
public  booleangetMaximizeOnConfig()
    
public  booleangetMaximizeOnEdit()
    
public  booleangetMaximizeOnEditDefaults()
    
protected  ListgetPageModes(RequestContext requestContext, PortletWindow window, ContentTypeSet content, PortletMode mode, WindowState state, PageActionAccess pageActionAccess, Decoration decoration, boolean isAjaxRequest)
     Builds a list of portlet modes that can be executed on the current fragment excluding the portlet's current mode.
protected  booleaninitActionsForFragment(RequestContext requestContext, ContentFragment fragment, PageActionAccess pageActionAccess, Decoration decoration, boolean isAjaxRequest)
     Builds and assigns a list of available portlet modes and window states for the target Fragment.
protected  voidinitDepthFragmentDecorations(RequestContext requestContext, Theme theme, ContentFragment fragment, PageActionAccess pageActionAccess, boolean isAjaxRequest, ResourceValidator validator, PathResolverCache pathResolverCache, boolean reloadActionList)
     Reintializes all fragments with there decorations and portlet modes and winodw states after theme is restored from cache.
protected  voidinitDepthFragments(RequestContext requestContext, Theme theme, ContentFragment fragment, PageActionAccess pageActionAccess, boolean isAjaxRequest, List collectFragments)
     Intializes all fragments with there decorations and portlet modes and winodw states.
protected  booleaninitFragment(RequestContext requestContext, Theme theme, ContentFragment fragment, PageActionAccess pageActionAccess, boolean isAjaxRequest)
    
public  voidinitFragments(RequestContext requestContext, boolean isAjaxRequest, List fragments)
    
public  voidinvoke(RequestContext requestContext, ValveContext context)
    
protected  booleanisSoloMode(RequestContext requestContext)
    
public  voidsetAutoSwitchingForConfigMode(boolean autoSwitchingForConfigMode)
    
public  voidsetAutoSwitchingToEditDefaultsModes(boolean autoSwitchingToEditDefaultsModes)
    
public  voidsetMaximizeOnConfig(boolean maxOnConfig)
    
public  voidsetMaximizeOnEdit(boolean maxOnEdit)
    
public  voidsetMaximizeOnEditDefaults(boolean maxOnEditDefaults)
    
public  StringtoString()
    
protected  booleanuseCache()
    

Field Detail
ACTION_IMAGE_EXTENSION_ATTR
final public static String ACTION_IMAGE_EXTENSION_ATTR(Code)



IS_AJAX_DECORATION_REQUEST
final public static String IS_AJAX_DECORATION_REQUEST(Code)



accessController
protected SecurityAccessController accessController(Code)
For security constraint checks



log
final protected static Log log(Code)




Constructor Detail
DecorationValve
public DecorationValve(DecorationFactory decorationFactory, PortletWindowAccessor windowAccessor, SecurityAccessController accessController)(Code)



DecorationValve
public DecorationValve(DecorationFactory decorationFactory, PortletWindowAccessor windowAccessor, SecurityAccessController accessController, JetspeedContentCache cache)(Code)



DecorationValve
public DecorationValve(DecorationFactory decorationFactory, PortletWindowAccessor windowAccessor, SecurityAccessController accessController, JetspeedContentCache cache, boolean useSessionForThemeCaching)(Code)




Method Detail
getAutoSwitchingForConfigMode
public boolean getAutoSwitchingForConfigMode()(Code)



getAutoSwitchingToEditDefaultsModes
public boolean getAutoSwitchingToEditDefaultsModes()(Code)



getDecoratorActionsAdapter
public DecoratorActionsFactory getDecoratorActionsAdapter(Decoration decoration)(Code)



getMaximizeOnConfig
public boolean getMaximizeOnConfig()(Code)



getMaximizeOnEdit
public boolean getMaximizeOnEdit()(Code)



getMaximizeOnEditDefaults
public boolean getMaximizeOnEditDefaults()(Code)



getPageModes
protected List getPageModes(RequestContext requestContext, PortletWindow window, ContentTypeSet content, PortletMode mode, WindowState state, PageActionAccess pageActionAccess, Decoration decoration, boolean isAjaxRequest)(Code)
Builds a list of portlet modes that can be executed on the current fragment excluding the portlet's current mode.
Parameters:
  requestContext - RequestContext of the current portal request.
Parameters:
  pageActionAccess -
Parameters:
  mode -
Parameters:
  content -
Parameters:
  portletName -
Parameters:
  window -
Parameters:
  fragment - java.util.List of modes excluding the current one.
throws:
  PortletEntityNotStoredException -



initActionsForFragment
protected boolean initActionsForFragment(RequestContext requestContext, ContentFragment fragment, PageActionAccess pageActionAccess, Decoration decoration, boolean isAjaxRequest) throws FailedToRetrievePortletWindow, PortletEntityNotStoredException(Code)
Builds and assigns a list of available portlet modes and window states for the target Fragment.
Parameters:
  requestContext - RequestContext of the current portal request.
Parameters:
  fragment - Fragment to initialize modes and states for.
throws:
  PortletEntityNotStoredException -
throws:
  FailedToRetrievePortletWindow -



initDepthFragmentDecorations
protected void initDepthFragmentDecorations(RequestContext requestContext, Theme theme, ContentFragment fragment, PageActionAccess pageActionAccess, boolean isAjaxRequest, ResourceValidator validator, PathResolverCache pathResolverCache, boolean reloadActionList)(Code)
Reintializes all fragments with there decorations and portlet modes and winodw states after theme is restored from cache.
Parameters:
  requestContext - RequestContext of the current portal request.
Parameters:
  theme -
Parameters:
  fragment -
Parameters:
  pageActionAccess -
Parameters:
  isAjaxRequest -
Parameters:
  validator -
Parameters:
  pathResolverCache -



initDepthFragments
protected void initDepthFragments(RequestContext requestContext, Theme theme, ContentFragment fragment, PageActionAccess pageActionAccess, boolean isAjaxRequest, List collectFragments)(Code)
Intializes all fragments with there decorations and portlet modes and winodw states.
Parameters:
  requestContext - RequestContext of the current portal request.
Parameters:
  theme -
Parameters:
  fragment -
Parameters:
  pageActionAccess -



initFragment
protected boolean initFragment(RequestContext requestContext, Theme theme, ContentFragment fragment, PageActionAccess pageActionAccess, boolean isAjaxRequest)(Code)



initFragments
public void initFragments(RequestContext requestContext, boolean isAjaxRequest, List fragments)(Code)



invoke
public void invoke(RequestContext requestContext, ValveContext context) throws PipelineException(Code)



isSoloMode
protected boolean isSoloMode(RequestContext requestContext)(Code)



setAutoSwitchingForConfigMode
public void setAutoSwitchingForConfigMode(boolean autoSwitchingForConfigMode)(Code)



setAutoSwitchingToEditDefaultsModes
public void setAutoSwitchingToEditDefaultsModes(boolean autoSwitchingToEditDefaultsModes)(Code)



setMaximizeOnConfig
public void setMaximizeOnConfig(boolean maxOnConfig)(Code)



setMaximizeOnEdit
public void setMaximizeOnEdit(boolean maxOnEdit)(Code)



setMaximizeOnEditDefaults
public void setMaximizeOnEditDefaults(boolean maxOnEditDefaults)(Code)



toString
public String toString()(Code)



useCache
protected boolean useCache()(Code)



Methods inherited from org.apache.jetspeed.pipeline.valve.AbstractValve
public void initialize() throws PipelineException(Code)(Java Doc)
abstract public void invoke(RequestContext request, ValveContext context) throws PipelineException(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.