Interface SessionTimeoutHandler
-
@SupportedAll public interface SessionTimeoutHandler
Implementation of this class gets executed every time when an SSO Session times out (either idle or max timeout). A new instance of the timeout handler is created upon session timeout. The listed methods are called just before the session gets removed, so it is safe to use the passed inSSOToken
instances. Because of this behavior it is encouraged that implementations don't run lengthy operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onIdleTimeout(SSOToken token)
Executed on idle timeoutvoid
onMaxTimeout(SSOToken token)
Executed on max timeout
-