| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SessionTimeoutHandler |
|
| 1.0;1 |
| 1 | package org.kuali.student.common.ui.client.security; | |
| 2 | ||
| 3 | /** | |
| 4 | * Implement this interface to provide a timeout handler for session timeout. | |
| 5 | * | |
| 6 | * @author Kuali Student Team | |
| 7 | * | |
| 8 | */ | |
| 9 | public interface SessionTimeoutHandler { | |
| 10 | ||
| 11 | /** | |
| 12 | * Detects if session has timed out | |
| 13 | */ | |
| 14 | public boolean isSessionTimeout(Throwable error); | |
| 15 | ||
| 16 | /** | |
| 17 | * Performs operations needed to handle a session timeout. | |
| 18 | */ | |
| 19 | public void handleSessionTimeout(); | |
| 20 | } |