com.ibm.portal.auth
Interface SessionTimeoutFilterChain
-
public interface SessionTimeoutFilterChain
This interface is used to call the next element in the session timeout filter chain.
A reference is passed to the SessionTimeoutFilter SPI.
If an implementation of this SPI calls this method, the corresponding method of the next filter
implementation as defined in the session timeout filter chain (as a property of the Portal Authentication Service) is called.
- Since:
- 6.1
Method Summary
|
void |
onUserSessionTimeout(javax.servlet.http.HttpSession session,
java.util.Map sessionTimeoutContext)
Calls the onUserSessionTimeout method of the next filter in the Portal session timeout filter chain. |
onUserSessionTimeout
void onUserSessionTimeout(javax.servlet.http.HttpSession session,
java.util.Map sessionTimeoutContext)
throws UserSessionTimeoutException
- Calls the onUserSessionTimeout method of the next filter in the Portal session timeout filter chain.
- Parameters:
- session - The HTTP session that timed out
- sessionTimeoutContext - A Map that can be used to share information between the session timeout filter
implementations.
- Throws:
- OnUserSessionTimeoutException - This generic exception is thrown for all
kinds of exceptions that can occur during the session timeout handling.
- UserSessionTimeoutException