ActionResponse
This interface extends javax.portlet.ActionResponse to
provide additional convenience methods.
Portlets deployed on WebLogic Portlet Container can cast
javax.portlet.ActionResponse objects
to this type to access these additional methods.
Related Topics
ActionResponse
ActionResponse, PortletResponse
Method Summary |
public void | |
public void |
|
public void | |
public void |
|
public boolean |
|
public void |
|
public void | |
public void |
|
Methods from interface javax.portlet. |
sendRedirect, setPortletMode, setRenderParameter, setRenderParameter, setRenderParameters, setWindowState |
Methods from interface javax.portlet. |
addProperty, encodeURL, setProperty |
Method Detail |
public void addCookie(Cookie cookie)
Adds a specified cookie to the response.
Related Topics
HttpServletResponse.addCookie(Cookie)
public void addDateHeader(String name,
long date)
Adds a response header with the given name and date value.
Related Topics
HttpServletResponse.addDateHeader(String, long)
public void addHeader(Stringname,Stringvalue)
Adds a response header with the given name and value.
Related Topics
HttpServletResponse.addHeader(String, String)
public void addIntHeader(String name,
int value)
Adds a response header with the given name and integer value.
Related Topics
HttpServletResponse.addIntHeader(String, int)
public boolean containsHeader(String name)
Returns a boolean indicating whether the named response header has already been set.
A Cookie header that has been added to the WindowActionResponse should be searched for by using the name of the Cookie, not "Set-Cookie" (the name of a Cookie header) because the Cookie header is not converted into a String value for a "Set-Cookie" header until it is propagated to the inner response.
public void setDateHeader(String name,
long date)
Sets a response header with the given name and date value.
Related Topics
HttpServletResponse.setDateHeader(String, long)
public void setHeader(Stringname,Stringvalue)
Sets a response header with the given name and value.
Related Topics
HttpServletResponse.setHeader(String, String)
public void setIntHeader(String name,
int value)
Sets a response header with the given name and integer value.
Related Topics