Uses of Interface
jakarta.portlet.ActionResponse
-
Packages that use ActionResponse Package Description jakarta.portlet The jakarta.portlet package defines the API for the Jakarta Portlet Specification V4.0.jakarta.portlet.filter The jakarta.portlet.filter package defines the filter APIs for the Jakarta Portlet Specification. -
-
Uses of ActionResponse in jakarta.portlet
Methods in jakarta.portlet with parameters of type ActionResponse Modifier and Type Method Description protected booleanGenericPortlet. dispatchAnnotatedActionMethod(String name, ActionRequest request, ActionResponse response)Dispatches an action request to an annotated action method.voidGenericPortlet. processAction(ActionRequest request, ActionResponse response)Called by the portlet container to allow the portlet to process an action request.voidPortlet. processAction(ActionRequest request, ActionResponse response)Called by the portlet container to allow the portlet to process an action request. -
Uses of ActionResponse in jakarta.portlet.filter
Classes in jakarta.portlet.filter that implement ActionResponse Modifier and Type Class Description classActionResponseWrapperTheActionResponseWrapperprovides a convenient implementation of theActionResponseinterface that can be subclassed by developers.Methods in jakarta.portlet.filter that return ActionResponse Modifier and Type Method Description ActionResponseActionResponseWrapper. getResponse()Return the wrapped response object.Methods in jakarta.portlet.filter with parameters of type ActionResponse Modifier and Type Method Description voidActionFilter. doFilter(ActionRequest request, ActionResponse response, FilterChain chain)ThedoFiltermethod 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.voidFilterChain. 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.voidActionResponseWrapper. setResponse(ActionResponse response)Sets the response object being wrapped.Constructors in jakarta.portlet.filter with parameters of type ActionResponse Constructor Description ActionResponseWrapper(ActionResponse response)Creates anActionResponseadaptor wrapping the given response object.
-