Uses of Interface
org.apache.shiro.mgt.SubjectDAO
-
Packages that use SubjectDAO Package Description org.apache.shiro.mgt Provides the masterSecurityManager
interface and a default implementation hierarchy for managing all aspects of Shiro's functionality in an application. -
-
Uses of SubjectDAO in org.apache.shiro.mgt
Classes in org.apache.shiro.mgt that implement SubjectDAO Modifier and Type Class Description class
DefaultSubjectDAO
DefaultSubjectDAO
implementation that stores Subject state in the Subject's Session by default (but this can be disabled - see below).Fields in org.apache.shiro.mgt declared as SubjectDAO Modifier and Type Field Description protected SubjectDAO
DefaultSecurityManager. subjectDAO
Methods in org.apache.shiro.mgt that return SubjectDAO Modifier and Type Method Description SubjectDAO
DefaultSecurityManager. getSubjectDAO()
Returns theSubjectDAO
responsible for persisting Subject state, typically used after login or when an Subject identity is discovered (eg after RememberMe services).Methods in org.apache.shiro.mgt with parameters of type SubjectDAO Modifier and Type Method Description void
DefaultSecurityManager. setSubjectDAO(SubjectDAO subjectDAO)
Sets theSubjectDAO
responsible for persisting Subject state, typically used after login or when an Subject identity is discovered (eg after RememberMe services).
-