Uses of Interface
jakarta.portlet.filter.FilterChain
-
Packages that use FilterChain Package Description jakarta.portlet.filter The jakarta.portlet.filter package defines the filter APIs for the Jakarta Portlet Specification. -
-
Uses of FilterChain in jakarta.portlet.filter
Methods in jakarta.portlet.filter with parameters of type FilterChain 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.voidEventFilter. doFilter(EventRequest request, EventResponse response, FilterChain chain)ThedoFiltermethod 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.voidRenderFilter. doFilter(RenderRequest request, RenderResponse response, FilterChain chain)ThedoFiltermethod 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.voidResourceFilter. doFilter(ResourceRequest request, ResourceResponse response, FilterChain chain)ThedoFiltermethod 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.
-