Sets a parameter map for the render request.
All previously set render parameters are cleared.
These parameters will be accessible in all
sub-sequent render calls via the
PortletRequest.getParameter call until
a new request is targeted to the portlet.
The given parameters do not need to be encoded
prior to calling this method.
Parameters: parameters - Map containing parameter names for the render phase as keys and parameter values as map values. The keys in the parametermap must be of type String. The values in the parameter map must be of typeString array (String[] ). exception: java.lang.IllegalArgumentException - if parameters is null , ifany of the key/values in the Map are null , if any of the keys is not a String, or if any of the values is not a String array. exception: java.lang.IllegalStateException - if the method is invoked after sendRedirect has been called. |