Uses of Interface
org.apache.shiro.util.ThreadState
-
Packages that use ThreadState Package Description org.apache.shiro.subject.support Concrete support implementations of most of theorg.apache.shiro.subject
interfaces. -
-
Uses of ThreadState in org.apache.shiro.subject.support
Classes in org.apache.shiro.subject.support that implement ThreadState Modifier and Type Class Description class
SubjectThreadState
Manages thread-state forSubject
access (supportingSecurityUtils.
getSubject()
calls) during a thread's execution.Fields in org.apache.shiro.subject.support declared as ThreadState Modifier and Type Field Description protected ThreadState
SubjectCallable. threadState
protected ThreadState
SubjectRunnable. threadState
Constructors in org.apache.shiro.subject.support with parameters of type ThreadState Constructor Description SubjectCallable(ThreadState threadState, Callable<V> delegate)
SubjectRunnable(ThreadState threadState, Runnable delegate)
Creates a newSubjectRunnable
that, when executed, will perform thread statebinding
and guaranteedrestoration
before and after theRunnable
's execution, respectively.
-