Uses of Interface
javax.portlet.ActionResponse
-
Packages that use ActionResponse Package Description javax.portlet The javax.portlet package defines the API for Java Portlet Specification V2.0.javax.portlet.filter The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification. -
-
Uses of ActionResponse in javax.portlet
Methods in javax.portlet with parameters of type ActionResponse Modifier and Type Method Description 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. -
Uses of ActionResponse in javax.portlet.filter
Classes in javax.portlet.filter that implement ActionResponse Modifier and Type Class Description class
ActionResponseWrapper
TheActionResponseWrapper
provides a convenient implementation of theActionResponse
interface that can be subclassed by developers wishing to adapt the response.Methods in javax.portlet.filter that return ActionResponse Modifier and Type Method Description ActionResponse
ActionResponseWrapper. getResponse()
Return the wrapped response object.Methods in javax.portlet.filter with parameters of type ActionResponse Modifier and Type Method Description void
ActionFilter. doFilter(ActionRequest request, ActionResponse response, FilterChain chain)
ThedoFilter
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
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
ActionResponseWrapper. setResponse(ActionResponse response)
Sets the response object being wrapped.Constructors in javax.portlet.filter with parameters of type ActionResponse Constructor Description ActionResponseWrapper(ActionResponse response)
Creates anActionResponse
adaptor wrapping the given response object.
-