public interface LiferayMutablePortletParameters
extends javax.portlet.MutablePortletParameters
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
NULL_PARAM_VALUE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isMutated()
Returns
true if the state of the portlet parameters has
changed. |
java.lang.String |
setValue(java.lang.String name,
java.lang.String value,
boolean append)
Sets the parameter value.
|
java.lang.String[] |
setValues(java.lang.String name,
java.lang.String[] values,
boolean append)
Sets the parameter values.
|
static final java.lang.String NULL_PARAM_VALUE
boolean isMutated()
true if the state of the portlet parameters has
changed.true if the state has changed; false
otherwisejava.lang.String setValue(java.lang.String name,
java.lang.String value,
boolean append)
IllegalArgumentException is
thrown if the name is null.name - the parameter's namevalue - the parameter's value. If null, the parameter
is removed.append - whether the new value is appended to any existing values
for the parameter. If this is false, any existing
values are overwritten with the new value.java.lang.String[] setValues(java.lang.String name,
java.lang.String[] values,
boolean append)
IllegalArgumentException is
thrown if the name is null.name - the parameter's namevalues - the parameter's values. If null, the
parameter is removed.append - whether the new values are appended to any existing values
for the parameter. If this is false, any existing
values are overwritten with the new values.