Uses of Interface
org.apache.shiro.session.mgt.SessionValidationScheduler
-
Packages that use SessionValidationScheduler Package Description org.apache.shiro.session.mgt SessionManager
components supporting enterprise session management.org.apache.shiro.session.mgt.quartz Quartz-based implementations of components that help SessionManager implementations maintain sessions (timed expiration, orphan cleanup, etc). -
-
Uses of SessionValidationScheduler in org.apache.shiro.session.mgt
Classes in org.apache.shiro.session.mgt that implement SessionValidationScheduler Modifier and Type Class Description class
ExecutorServiceSessionValidationScheduler
SessionValidationScheduler implementation that uses aScheduledExecutorService
to callValidatingSessionManager.validateSessions()
everyinterval
milliseconds.Fields in org.apache.shiro.session.mgt declared as SessionValidationScheduler Modifier and Type Field Description protected SessionValidationScheduler
AbstractValidatingSessionManager. sessionValidationScheduler
Scheduler used to validate sessions on a regular basis.Methods in org.apache.shiro.session.mgt that return SessionValidationScheduler Modifier and Type Method Description protected SessionValidationScheduler
AbstractValidatingSessionManager. createSessionValidationScheduler()
SessionValidationScheduler
AbstractValidatingSessionManager. getSessionValidationScheduler()
Methods in org.apache.shiro.session.mgt with parameters of type SessionValidationScheduler Modifier and Type Method Description void
AbstractValidatingSessionManager. setSessionValidationScheduler(SessionValidationScheduler sessionValidationScheduler)
-
Uses of SessionValidationScheduler in org.apache.shiro.session.mgt.quartz
Classes in org.apache.shiro.session.mgt.quartz that implement SessionValidationScheduler Modifier and Type Class Description class
QuartzSessionValidationScheduler
An implementation of theSessionValidationScheduler
that uses Quartz to schedule a job to callValidatingSessionManager.validateSessions()
on a regular basis.
-