Uses of Class
javax.portlet.PortletMode

Packages that use PortletMode
javax.portlet The javax.portlet package defines the API for Java Portlet Specification V2.0. 
javax.portlet.filter The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification. 
org.apache.pluto The root package of the Pluto Portlet Container. 
org.apache.pluto.driver.core   
org.apache.pluto.driver.services.container   
org.apache.pluto.driver.url   
org.apache.pluto.driver.url.impl   
org.apache.pluto.internal   
org.apache.pluto.internal.impl   
org.apache.pluto.spi   
org.apache.pluto.wrappers   
 

Uses of PortletMode in javax.portlet
 

Fields in javax.portlet declared as PortletMode
static PortletMode PortletMode.EDIT
          Within the EDIT portlet mode, a portlet should provide content and logic that lets a user customize the behavior of the portlet.
static PortletMode PortletMode.HELP
          When in HELP portlet mode, a portlet should provide help information about the portlet.
static PortletMode PortletMode.VIEW
          The expected functionality for a portlet in VIEW portlet mode is to generate markup reflecting the current state of the portlet.
 

Methods in javax.portlet that return PortletMode
 PortletMode PortletModeException.getMode()
          Returns the unsupported portlet mode causing this exception.
 PortletMode PortletURL.getPortletMode()
          Returns the currently set portlet mode on this PortletURL.
 PortletMode StateAwareResponse.getPortletMode()
          Returns the currently set portlet mode on this reponse.
 PortletMode PortletRequest.getPortletMode()
          Returns the current portlet mode of the portlet.
 

Methods in javax.portlet that return types with arguments of type PortletMode
protected  java.util.Collection<PortletMode> GenericPortlet.getNextPossiblePortletModes(RenderRequest request)
          Used by the render method to set the next possible portlet modes.
 java.util.Enumeration<PortletMode> PortalContext.getSupportedPortletModes()
          Returns all supported portlet modes by the portal as an enumeration of PortletMode objects.
 

Methods in javax.portlet with parameters of type PortletMode
 boolean PortletRequest.isPortletModeAllowed(PortletMode mode)
          Returns true, if the given portlet mode is a valid one to set for this portlet in the context of the current request.
 void PortletURL.setPortletMode(PortletMode portletMode)
          Indicates the portlet mode the portlet must be in, if this portlet URL triggers a request.
 void StateAwareResponse.setPortletMode(PortletMode portletMode)
          Sets the portlet mode of a portlet to the given portlet mode.
 

Method parameters in javax.portlet with type arguments of type PortletMode
 void RenderResponse.setNextPossiblePortletModes(java.util.Collection<PortletMode> portletModes)
          This method allows the portlet to tell the portal the next possible portlet modes that the make sense from the portlet point of view.
 

Constructors in javax.portlet with parameters of type PortletMode
PortletModeException(java.lang.String text, PortletMode mode)
          Constructs a new portlet mode exception with the given text and the portlet mode that caused this exception.
PortletModeException(java.lang.String text, java.lang.Throwable cause, PortletMode mode)
          Constructs a new portlet mode exception when the portlet needs to do the following: throw an exception include a message about the "root cause" that interfered with its normal operation include a description message include the portlet mode that caused this exception
PortletModeException(java.lang.Throwable cause, PortletMode mode)
          Constructs a new portlet mode exception when the portlet needs to throw an exception.
 

Uses of PortletMode in javax.portlet.filter
 

Methods in javax.portlet.filter that return PortletMode
 PortletMode ActionResponseWrapper.getPortletMode()
          The default behavior of this method is to call getPortletMode() on the wrapped response object.
 PortletMode EventResponseWrapper.getPortletMode()
          The default behavior of this method is to call getPortletMode() on the wrapped response object.
 PortletMode PortletRequestWrapper.getPortletMode()
          The default behavior of this method is to call getPortletMode() on the wrapped request object.
 

Methods in javax.portlet.filter with parameters of type PortletMode
 boolean PortletRequestWrapper.isPortletModeAllowed(PortletMode mode)
          The default behavior of this method is to call isPortletModeAllowed(mode) on the wrapped request object.
 void ActionResponseWrapper.setPortletMode(PortletMode portletMode)
          The default behavior of this method is to call setPortletMode(portletMode) on the wrapped response object.
 void EventResponseWrapper.setPortletMode(PortletMode portletMode)
          The default behavior of this method is to call setPortletMode(portletMode) on the wrapped response object.
 

Method parameters in javax.portlet.filter with type arguments of type PortletMode
 void RenderResponseWrapper.setNextPossiblePortletModes(java.util.Collection<PortletMode> portletModes)
          The default behavior of this method is to call setNextPossiblePortletModes() on the wrapped response object.
 

Uses of PortletMode in org.apache.pluto
 

Methods in org.apache.pluto that return PortletMode
 PortletMode PortletWindow.getPortletMode()
          Retrieve the current portlet mode for this window.
 

Uses of PortletMode in org.apache.pluto.driver.core
 

Methods in org.apache.pluto.driver.core that return PortletMode
 PortletMode PortletWindowImpl.getPortletMode()
           
 

Uses of PortletMode in org.apache.pluto.driver.services.container
 

Methods in org.apache.pluto.driver.services.container with parameters of type PortletMode
 void PortletURLProviderImpl.setPortletMode(PortletMode mode)
           
 

Uses of PortletMode in org.apache.pluto.driver.url
 

Methods in org.apache.pluto.driver.url that return PortletMode
 PortletMode PortalURL.getPortletMode(java.lang.String windowId)
           
 

Methods in org.apache.pluto.driver.url with parameters of type PortletMode
 void PortalURL.setPortletMode(java.lang.String windowId, PortletMode portletMode)
           
 

Uses of PortletMode in org.apache.pluto.driver.url.impl
 

Methods in org.apache.pluto.driver.url.impl that return PortletMode
 PortletMode PortalURLImpl.getPortletMode(java.lang.String windowId)
          Deprecated.  
 PortletMode RelativePortalURLImpl.getPortletMode(java.lang.String windowId)
           
 

Methods in org.apache.pluto.driver.url.impl with parameters of type PortletMode
 void PortalURLImpl.setPortletMode(java.lang.String windowId, PortletMode portletMode)
          Deprecated.  
 void RelativePortalURLImpl.setPortletMode(java.lang.String windowId, PortletMode portletMode)
           
 

Uses of PortletMode in org.apache.pluto.internal
 

Methods in org.apache.pluto.internal that return PortletMode
 PortletMode InternalActionResponse.getChangedPortletMode()
          Retrieve the portlet mode.
 

Uses of PortletMode in org.apache.pluto.internal.impl
 

Fields in org.apache.pluto.internal.impl declared as PortletMode
protected  PortletMode BaseURLImpl.mode
           
 

Methods in org.apache.pluto.internal.impl that return PortletMode
 PortletMode StateAwareResponseImpl.getChangedPortletMode()
           
 PortletMode BaseURLImpl.getPortletMode()
           
 PortletMode PortletRequestImpl.getPortletMode()
           
 PortletMode InternalPortletWindowImpl.getPortletMode()
           
 PortletMode StateAwareResponseImpl.getPortletMode()
           
 

Methods in org.apache.pluto.internal.impl with parameters of type PortletMode
protected  boolean BaseURLImpl.isPortletModeAllowed(PortletMode mode)
           
 boolean PortletRequestImpl.isPortletModeAllowed(PortletMode mode)
           
protected  boolean StateAwareResponseImpl.isPortletModeAllowed(PortletMode mode)
           
protected  boolean StateAwareResponseImpl.isPortletModeAllowedByPortal(PortletMode mode)
           
protected  boolean StateAwareResponseImpl.isPortletModeAllowedByPortlet(PortletMode mode)
           
 void PortletURLImpl.setPortletMode(PortletMode portletMode)
           
 void StateAwareResponseImpl.setPortletMode(PortletMode portletMode)
           
 

Method parameters in org.apache.pluto.internal.impl with type arguments of type PortletMode
 void RenderResponseImpl.setNextPossiblePortletModes(java.util.Collection<PortletMode> portletModes)
           
 

Uses of PortletMode in org.apache.pluto.spi
 

Methods in org.apache.pluto.spi with parameters of type PortletMode
 void PortletURLProvider.setPortletMode(PortletMode mode)
          Sets the new portlet mode at the URL.
 

Uses of PortletMode in org.apache.pluto.wrappers
 

Methods in org.apache.pluto.wrappers that return PortletMode
 PortletMode ActionResponseWrapper.getPortletMode()
           
 PortletMode PortletRequestWrapper.getPortletMode()
           
 

Methods in org.apache.pluto.wrappers with parameters of type PortletMode
 boolean PortletRequestWrapper.isPortletModeAllowed(PortletMode mode)
           
 void ActionResponseWrapper.setPortletMode(PortletMode portletMode)
           
 

Method parameters in org.apache.pluto.wrappers with type arguments of type PortletMode
 void RenderResponseWrapper.setNextPossiblePortletModes(java.util.Collection<PortletMode> portletModes)
           
 



Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.