All Implemented Interfaces:
PortletRequest
ActionRequest
represents the request sent to the portlet
to handle an action.
It extends the PortletRequest interface to provide action request
information to portlets.ActionRequest
object and
passes it as argument to the portlet's processAction
method.Method from javax.portlet.ActionRequest Summary: |
---|
getCharacterEncoding, getContentLength, getContentType, getPortletInputStream, getReader, setCharacterEncoding |
Method from javax.portlet.ActionRequest Detail: |
---|
null if the request
does not specify a character encoding. |
|
|
InputStream . Either this method or
#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. |
BufferedReader . The reader translates the character
data according to the character encoding used on the body.
Either this method or #getPortletInputStream may be called to read the
body, 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. |
|