Package | Description |
---|---|
javax.portlet |
The javax.portlet package defines the API
for the Java Portlet Specification V3.0.
|
javax.portlet.filter |
The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
GenericPortlet.dispatchAnnotatedActionMethod(String name,
ActionRequest request,
ActionResponse response)
Dispatches an action request to an annotated action method.
|
void |
GenericPortlet.processAction(ActionRequest request,
ActionResponse response)
Called by the portlet container to allow the portlet to process an action
request.
|
void |
Portlet.processAction(ActionRequest request,
ActionResponse response)
Called by the portlet container to allow the portlet to process
an action request.
|
Modifier and Type | Class and Description |
---|---|
class |
ActionResponseWrapper
The
ActionResponseWrapper provides a convenient
implementation of the ActionResponse interface
that can be subclassed by developers. |
Modifier and Type | Method and Description |
---|---|
ActionResponse |
ActionResponseWrapper.getResponse()
Return the wrapped response object.
|
Modifier and Type | Method and Description |
---|---|
void |
FilterChain.doFilter(ActionRequest request,
ActionResponse response)
Causes the next filter in the chain to be invoked,
or if the calling filter is the last filter in the chain,
causes the portlet at the end of the chain to be invoked.
|
void |
ActionFilter.doFilter(ActionRequest request,
ActionResponse response,
FilterChain chain)
The
doFilter method of the Filter is called by the
portlet container each time a action request/response pair is passed
through the chain due to a client request for a portlet method
at the end of the chain. |
void |
ActionResponseWrapper.setResponse(ActionResponse response)
Sets the response object being wrapped.
|
Constructor and Description |
---|
ActionResponseWrapper(ActionResponse response)
Creates an
ActionResponse adaptor
wrapping the given response object. |
Java Portlet 3.0 API Specification. See the Copyright and License provided with this distribution. Use is subject to license terms.