public interface ActionRequest extends 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.PortletRequest,
RenderRequestBASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH, USER_INFO| Modifier and Type | Method and Description |
|---|---|
String |
getCharacterEncoding()
Returns the name of the character encoding used in the body of this request.
|
int |
getContentLength()
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.
|
String |
getContentType()
Returns the MIME type of the body of the request, or null if the type is not known.
|
InputStream |
getPortletInputStream()
Retrieves the body of the HTTP request from client to portal as binary data using an
InputStream. |
BufferedReader |
getReader()
Retrieves the body of the HTTP request from the client to the portal as character data using a
BufferedReader. |
void |
setCharacterEncoding(String enc)
Overrides the name of the character encoding used in the body of this request.
|
getAttribute, getAttributeNames, getAuthType, getContextPath, getLocale, getLocales, getParameter, getParameterMap, getParameterNames, getParameterValues, getPortalContext, getPortletMode, getPortletSession, getPortletSession, getPreferences, getProperties, getProperty, getPropertyNames, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserPrincipal, getWindowState, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttributeString getCharacterEncoding()
null
if the request does not specify a character encoding.String containing the name of the chararacter encoding, or null if the
request does not specify a character encoding.int getContentLength()
String getContentType()
String containing the name of the MIME type of the request, or null if the type is not
known.InputStream getPortletInputStream() throws IllegalStateException, IOException
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.IllegalStateException - if getReader was already called, or it is a HTTP POST data of type
application/x-www-form-urlencodedIOException - if an input or output exception occurredBufferedReader getReader() throws UnsupportedEncodingException, IllegalStateException, IOException
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.BufferedReader containing the body of the requestUnsupportedEncodingException - if the character set encoding used is not supported and the text cannot be decodedIllegalStateException - if getPortletInputStream() method has been called on this request, it is a
HTTP POST data of type application/x-www-form-urlencoded.IOException - if an input or output exception occurredgetPortletInputStream()void setCharacterEncoding(String enc) throws UnsupportedEncodingException, IllegalStateException
getReader() or getPortletInputStream().
This method only sets the character set for the Reader that the getReader() method returns.enc - a String containing the name of the chararacter encoding.UnsupportedEncodingException - if this is not a valid encodingIllegalStateException - if this method is called after reading request parameters or reading
input using getReader()Copyright © 2003-2016 GateIn. All Rights Reserved.