Uses of Interface
javax.portlet.filter.FilterChain
-
Packages that use FilterChain Package Description javax.portlet.filter The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification. -
-
Uses of FilterChain in javax.portlet.filter
Methods in javax.portlet.filter with parameters of type FilterChain 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
EventFilter. doFilter(EventRequest request, EventResponse response, FilterChain chain)
ThedoFilter
method of the Filter is called by the portlet container each time a event request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.void
RenderFilter. doFilter(RenderRequest request, RenderResponse response, FilterChain chain)
ThedoFilter
method of the Filter is called by the portlet container each time a render request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.void
ResourceFilter. doFilter(ResourceRequest request, ResourceResponse response, FilterChain chain)
ThedoFilter
method of the Filter is called by the portlet container each time a resource request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.
-