| java.lang.Object com.sun.portal.portlet.impl.PortletRequestImpl com.sun.portal.portlet.impl.RenderRequestImpl
clear | void clear()(Code) | | Clears the global variables.
|
getParameterMap | public java.util.Map getParameterMap()(Code) | | Returns a Map of the parameters of this request.
Request parameters are extra information sent with the request.
The returned parameters are "x-www-form-urlencoded" decoded.
The values in the returned Map are from type
String array (String[] ).
If no parameters exist this method returns null .
an immutable java.util.Map containing parameter names as keys and parameter values as map values. The keys in the parametermap are of type String. The values in the parameter map are of typeString array (String[] ). |
getPortletMode | public PortletMode getPortletMode()(Code) | | Returns the current mode of the portlet.
the portlet mode |
getProperty | public String getProperty(String name)(Code) | | Returns the value of the specified client request property * as a String . If the request did not include a property
of the specified name, this method returns null .
A portlet can access portal/portlet-container specific properties
through this method and, if available, the
headers of the HTTP client request.
This method should only be used if the
property has only one value. If the property might have
more than one value, use
RenderRequestImpl.getProperties .
If this method is used with a multivalued
parameter, the value returned is equal to the first value
in the enumeration returned by getProperties .
Parameters: name - a String specifying theproperty name a String containing thevalue of the requestedproperty, or null if the request does nothave a property of that name exception: java.lang.IllegalArgumentException - if name is null . |
getWindowState | public WindowState getWindowState()(Code) | | Returns the current window state of the portlet.
the window state |
|
|