Uses of Interface
org.apache.shiro.authz.Authorizer
-
Packages that use Authorizer Package Description org.apache.shiro.authz Core interfaces and exceptions supporting Authorization (access control).org.apache.shiro.mgt Provides the masterSecurityManager
interface and a default implementation hierarchy for managing all aspects of Shiro's functionality in an application.org.apache.shiro.realm Components and sub-packages used in supporting the coreRealm
interface.org.apache.shiro.realm.activedirectory Realms that acquire security data from a Microsoft Active Directory.org.apache.shiro.realm.jdbc Realms that acquire security data from an RDBMS (Relational Database Management System) using the JDBC API.org.apache.shiro.realm.ldap Realms that acquire security data from an LDAP (Lightweight Directory Access Protocol) server utilizing LDAP/Naming APIs.org.apache.shiro.realm.text Realms that acquire security data from text-based data sources such asFile
s or text streams. -
-
Uses of Authorizer in org.apache.shiro.authz
Classes in org.apache.shiro.authz that implement Authorizer Modifier and Type Class Description class
ModularRealmAuthorizer
A ModularRealmAuthorizer is an Authorizer implementation that consults one or more configuredRealm
s during an authorization operation. -
Uses of Authorizer in org.apache.shiro.mgt
Subinterfaces of Authorizer in org.apache.shiro.mgt Modifier and Type Interface Description interface
SecurityManager
ASecurityManager
executes all security operations for all Subjects (aka users) across a single application.Classes in org.apache.shiro.mgt that implement Authorizer Modifier and Type Class Description class
AuthenticatingSecurityManager
Shiro support of aSecurityManager
class hierarchy that delegates all authentication operations to a wrappedAuthenticator
instance.class
AuthorizingSecurityManager
Shiro support of aSecurityManager
class hierarchy that delegates all authorization (access control) operations to a wrappedAuthorizer
instance.class
CachingSecurityManager
A very basic starting point for the SecurityManager interface that merely provides logging and caching support.class
DefaultSecurityManager
The Shiro framework's default concrete implementation of theSecurityManager
interface, based around a collection ofRealm
s.class
RealmSecurityManager
Shiro support of aSecurityManager
class hierarchy based around a collection ofRealm
s.class
SessionsSecurityManager
Shiro support of aSecurityManager
class hierarchy that delegates allsession
operations to a wrappedSessionManager
instance.Methods in org.apache.shiro.mgt that return Authorizer Modifier and Type Method Description Authorizer
AuthorizingSecurityManager. getAuthorizer()
Returns the underlying wrapped Authorizer instance to which this SecurityManager implementation delegates all of its authorization calls.Methods in org.apache.shiro.mgt with parameters of type Authorizer Modifier and Type Method Description void
AuthorizingSecurityManager. setAuthorizer(Authorizer authorizer)
Sets the underlying Authorizer instance to which this SecurityManager implementation will delegate all of its authorization calls. -
Uses of Authorizer in org.apache.shiro.realm
Classes in org.apache.shiro.realm that implement Authorizer Modifier and Type Class Description class
AuthorizingRealm
AnAuthorizingRealm
extends theAuthenticatingRealm
's capabilities by adding Authorization (access control) support.class
SimpleAccountRealm
A simple implementation of theRealm
interface that uses a set of configured user accounts and roles to support authentication and authorization. -
Uses of Authorizer in org.apache.shiro.realm.activedirectory
Classes in org.apache.shiro.realm.activedirectory that implement Authorizer Modifier and Type Class Description class
ActiveDirectoryRealm
ARealm
that authenticates with an active directory LDAP server to determine the roles for a particular user. -
Uses of Authorizer in org.apache.shiro.realm.jdbc
Classes in org.apache.shiro.realm.jdbc that implement Authorizer Modifier and Type Class Description class
JdbcRealm
Realm that allows authentication and authorization via JDBC calls. -
Uses of Authorizer in org.apache.shiro.realm.ldap
Classes in org.apache.shiro.realm.ldap that implement Authorizer Modifier and Type Class Description class
AbstractLdapRealm
ARealm
that authenticates with an LDAP server to build the Subject for a user.class
DefaultLdapRealm
An LDAPRealm
implementation utilizing Sun's/Oracle's JNDI API as an LDAP API.class
JndiLdapRealm
Deprecated.Renamed toDefaultLdapRealm
, this class will be removed prior to 2.0 -
Uses of Authorizer in org.apache.shiro.realm.text
Classes in org.apache.shiro.realm.text that implement Authorizer Modifier and Type Class Description class
IniRealm
class
PropertiesRealm
ATextConfigurationRealm
that defers all logic to the parent class, but just enablesProperties
based configuration in addition to the parent class's String configuration.class
TextConfigurationRealm
A SimpleAccountRealm that enables text-based configuration of the initial User, Role, and Permission objects created at startup.
-