Package javax.portlet.filter
The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification.
-
Interface Summary Interface Description ActionFilter TheActionFilter
is an object that performs filtering tasks on either the action request to a portlet, or on the action response from a portlet, or both.EventFilter TheEventFilter
is an object that performs filtering tasks on either the event request to a portlet, or on the event response from a portlet, or both.FilterChain AFilterChain
is an object provided by the portlet container to the developer giving a view into the invocation chain of a filtered request for a portlet.FilterConfig A filter configuration object used by a portlet container to pass information to a filter during initialization.PortletFilter ThePortletFilter
is the base interface for all portlet filters.RenderFilter TheRenderFilter
is an object that performs filtering tasks on either the render request to a portlet, or on the render response from a portlet, or both.ResourceFilter TheResourceFilter
is an object that performs filtering tasks on either the resource request to a portlet, or on the resource response from a portlet, or both. -
Class Summary Class Description ActionRequestWrapper TheActionRequestWrapper
provides a convenient implementation of theActionRequest
interface that can be subclassed by developers wishing to adapt the request.ActionResponseWrapper TheActionResponseWrapper
provides a convenient implementation of theActionResponse
interface that can be subclassed by developers wishing to adapt the response.EventRequestWrapper TheEventRequestWrapper
provides a convenient implementation of theEventRequest
interface that can be subclassed by developers wishing to adapt the request.EventResponseWrapper TheEventResponseWrapper
provides a convenient implementation of theEventResponse
interface that can be subclassed by developers wishing to adapt the response.PortletRequestWrapper ThePortletRequestWrapper
provides a convenient implementation of thePortletRequest
interface and is extended by other request wrappers.PortletResponseWrapper ThePortletResponseWrapper
provides a convenient implementation of thePortletResponse
interface and is extended by other response wrappers.RenderRequestWrapper TheRenderRequestWrapper
provides a convenient implementation of theRenderRequest
interface that can be subclassed by developers wishing to adapt the request.RenderResponseWrapper TheRenderResponseWrapper
provides a convenient implementation of theRenderResponse
interface that can be subclassed by developers wishing to adapt the response.ResourceRequestWrapper TheResourceRequestWrapper
provides a convenient implementation of theResourceRequest
interface that can be subclassed by developers wishing to adapt the request.ResourceResponseWrapper TheResourceResponseWrapper
provides a convenient implementation of theResourceResponse
interface that can be subclassed by developers wishing to adapt the response.