Package jakarta.portlet
Interface ActionParameters
-
- All Superinterfaces:
PortletParameters
- All Known Subinterfaces:
MutableActionParameters
- All Known Implementing Classes:
ActionParametersWrapper,MutableActionParametersWrapper
public interface ActionParameters extends PortletParameters
Action parameters are additional portlet parameters added to the portlet URL or provided by the client that extend the state information provided by the render parameters. The client can supply additional action parameters when a form is submitted, for example.PortletParametersprovides a description of the parameter concept.- Since:
- 3.0
- See Also:
PortletParameters,MutableActionParameters,ActionRequest,ActionURL
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableActionParametersclone()Returns aMutableActionParametersobject encapsulating a copy of the same parameters as the original object.
-
-
-
Method Detail
-
clone
MutableActionParameters clone()
Returns aMutableActionParametersobject encapsulating a copy of the same parameters as the original object. Changing a mutable copy will not influence the source object.- Specified by:
clonein interfacePortletParameters- Returns:
- Mutable clone of ActionParameters object
-
-