| javax.portlet.ActionRequest
All known Subclasses: com.sun.portal.portlet.impl.ActionRequestImpl,
ActionRequest | public interface ActionRequest extends PortletRequest(Code) | | The ActionRequest represents the request sent to the portlet
to handle an action.
It extends the PortletRequest interface to provide action request
information to portlets.
The portlet container creates an ActionRequest object and
passes it as argument to the portlet's processAction method.
See Also: PortletRequest See Also: RenderRequest |
getCharacterEncoding | public java.lang.String getCharacterEncoding()(Code) | | Returns the name of the character encoding used in the body of this request.
This method returns null if the request
does not specify a character encoding.
a String containing the name of the chararacter encoding, or null if the request does not specify a character encoding. |
getContentLength | public int getContentLength()(Code) | | Returns the length, in bytes, of the request body
which is made available by the input stream, or -1 if the
length is not known.
an integer containing the length of the request body or -1 if the length is not known |
getContentType | public java.lang.String getContentType()(Code) | | Returns the MIME type of the body of the request,
or null if the type is not known.
a String containing the name of the MIME type of the request, or null if the type is not known. |
getPortletInputStream | public java.io.InputStream getPortletInputStream() throws java.io.IOException(Code) | | Retrieves the body of the HTTP request from client to
portal as binary data using
an InputStream . Either this method or
ActionRequest.getReader may be called to read the body, but not both.
For HTTP POST data of type application/x-www-form-urlencoded
this method throws an IllegalStateException
as this data has been already processed by the
portal/portlet-container and is available as request parameters.
an input stream containing the body of the request exception: java.lang.IllegalStateException - if getReader was already called, or it is a HTTP POST data of type application/x-www-form-urlencoded exception: java.io.IOException - if an input or output exception occurred |
|
|