| org.apache.pluto.spi.PortalCallbackService
All known Subclasses: org.apache.pluto.driver.services.container.PortalCallbackServiceImpl,
PortalCallbackService | public interface PortalCallbackService extends ContainerService(Code) | | The callback service interface defining callback methods that will be invoked
by the portlet container when necessary.
version: 1.0 since: Sep 21, 2004 |
Method Summary | |
public void | addResponseProperty(HttpServletRequest request, PortletWindow portletWindow, String property, String value) | public PortletURLProvider | getPortletURLProvider(HttpServletRequest request, PortletWindow portletWindow) Returns a URL provider used to constuct a URL to the given portlet.
Parameters: request - the servlet request. Parameters: portletWindow - the portlet window. | public Map | getRequestProperties(HttpServletRequest request, PortletWindow portletWindow) | public ResourceURLProvider | getResourceURLProvider(HttpServletRequest request, PortletWindow portletWindow) Returns a URL provider used to construct a URL to a resource in the web
application.
Parameters: request - the servlet request. Parameters: portletWindow - the portlet window. | public void | setResponseProperty(HttpServletRequest request, PortletWindow portletWindow, String property, String value) | public void | setTitle(HttpServletRequest request, PortletWindow portletWindow, String title) Set the title to be used for this portlet. |
getPortletURLProvider | public PortletURLProvider getPortletURLProvider(HttpServletRequest request, PortletWindow portletWindow)(Code) | | Returns a URL provider used to constuct a URL to the given portlet.
Parameters: request - the servlet request. Parameters: portletWindow - the portlet window. the URL provider used to construct a URL to the given portlet. |
getResourceURLProvider | public ResourceURLProvider getResourceURLProvider(HttpServletRequest request, PortletWindow portletWindow)(Code) | | Returns a URL provider used to construct a URL to a resource in the web
application.
Parameters: request - the servlet request. Parameters: portletWindow - the portlet window. the URL provider used to construct a URL to a resource. |
setTitle | public void setTitle(HttpServletRequest request, PortletWindow portletWindow, String title)(Code) | | Set the title to be used for this portlet.
Parameters: request - the servlet request. Parameters: portletWindow - the portlet window. Parameters: title - the title to set. |
|
|