| com.caucho.portal.generic.PortalResponse
All known Subclasses: com.caucho.portal.generic.context.PortalResponseImpl,
PortalResponse | public interface PortalResponse (Code) | | |
Method Summary | |
public PortalURL | createActionURL(String namespace, boolean keepParameters) Create an action url that targets another namespace. | public PortalURL | createRenderURL(String namespace, boolean keepParameters) Create a render url to another namespace. | public void | setParameter(String namespace, String name, String value) Set a Rparameter for a namespace. | public void | setParameter(String namespace, String name, String[] values) Set a parameter for a namespace. | public void | setParameters(String namespace, Map<String, String[]> srcMap) Set parameters for a namespace to the map. | public void | setPortletMode(String namespace, PortletMode portletMode) Set the portlet modes for a namespace. | public void | setWindowState(String namespace, WindowState windowState) Set the window state for a namespace. |
createActionURL | public PortalURL createActionURL(String namespace, boolean keepParameters)(Code) | | Create an action url that targets another namespace.
Parameters: isSticky - if true, then the render parameters that exist for thenamespace for this request are maintained for the next request.If false, the url when first formed will have no parameters. |
createRenderURL | public PortalURL createRenderURL(String namespace, boolean keepParameters)(Code) | | Create a render url to another namespace.
Parameters: keepParameters - if true, then the render parameters that exist forthe namespace for this request are maintained for the next request.If false, the url when first formed will have no parameters. |
setParameter | public void setParameter(String namespace, String name, String value)(Code) | | Set a Rparameter for a namespace.
If the portlet matching the namespace has already had processAction()
or render() called on it, an exception is thrown because it
is too late to set parameters.
|
setParameter | public void setParameter(String namespace, String name, String[] values)(Code) | | Set a parameter for a namespace.
If the portlet matching the namespace has already had processAction()
or render() called on it, an exception is thrown because it
is too late to set parameters.
|
setParameters | public void setParameters(String namespace, Map<String, String[]> srcMap)(Code) | | Set parameters for a namespace to the map.
If the portlet matching the namespace has already had processAction()
or render() called on it, an exception is thrown because it
is too late to set parameters.
|
setPortletMode | public void setPortletMode(String namespace, PortletMode portletMode) throws PortletModeException(Code) | | Set the portlet modes for a namespace.
If the portlet matching the namespace has already had processAction()
or render() called on it, an exception is thrown because it
is too late to set the portlet mode.
|
setWindowState | public void setWindowState(String namespace, WindowState windowState) throws WindowStateException(Code) | | Set the window state for a namespace.
If the portlet matching the namespace has already had processAction()
or render() called on it, an exception is thrown because it
is too late to set the window state.
|
|
|