Interface StaleSessionCheckingFilterChain
- All Superinterfaces:
javax.servlet.FilterChain
- All Known Implementing Classes:
DefaultStaleSessionCheckingFilterChain
public interface StaleSessionCheckingFilterChain
extends javax.servlet.FilterChain
A
FilterChain responsible for dealing with the stale session.-
Method Summary
Modifier and TypeMethodDescriptionAs part of theFilterChain.doFilter(ServletRequest, ServletResponse)invocation the decision should be made if further processing of theServletRequestis allowed or not.Methods inherited from interface javax.servlet.FilterChain
doFilter
-
Method Details
-
getStaleSessionAction
StaleSessionStrategy.Action getStaleSessionAction()As part of theFilterChain.doFilter(ServletRequest, ServletResponse)invocation the decision should be made if further processing of theServletRequestis allowed or not.- Returns:
StaleSessionStrategy.Action.CONTINUE_REQUEST_PROCESSINGif processing of theServletRequestshould be continued.StaleSessionStrategy.Action.BREAK_REQUEST_PROCESSINGif processing of theServletRequestshould not be continued.
-