Uses of Interface
org.apache.shiro.util.Initializable

Packages that use Initializable
org.apache.shiro.realm Components and sub-packages used in supporting the core Realm 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 as Files or text streams. 
org.apache.shiro.util Your run-of-the-mill 'util' pacakge for components and logic widely used across the framework that can't find their home into a proper OO hierarchy (or, most likely for things used across many hierarchies). 
 

Uses of Initializable in org.apache.shiro.realm
 

Classes in org.apache.shiro.realm that implement Initializable
 class AuthenticatingRealm
          A top-level abstract implementation of the Realm interface that only implements authentication support (log-in) operations and leaves authorization (access control) behavior to subclasses.
 class AuthorizingRealm
          An AuthorizingRealm extends the AuthenticatingRealm's capabilities by adding Authorization (access control) support.
 class SimpleAccountRealm
          A simple implementation of the Realm interface that uses a set of configured user accounts and roles to support authentication and authorization.
 

Uses of Initializable in org.apache.shiro.realm.activedirectory
 

Classes in org.apache.shiro.realm.activedirectory that implement Initializable
 class ActiveDirectoryRealm
          A Realm that authenticates with an active directory LDAP server to determine the roles for a particular user.
 

Uses of Initializable in org.apache.shiro.realm.jdbc
 

Classes in org.apache.shiro.realm.jdbc that implement Initializable
 class JdbcRealm
          Realm that allows authentication and authorization via JDBC calls.
 

Uses of Initializable in org.apache.shiro.realm.ldap
 

Classes in org.apache.shiro.realm.ldap that implement Initializable
 class AbstractLdapRealm
          A Realm that authenticates with an LDAP server to build the Subject for a user.
 class JndiLdapRealm
          An LDAP Realm implementation utilizing Sun's/Oracle's JNDI API as an LDAP API.
 

Uses of Initializable in org.apache.shiro.realm.text
 

Classes in org.apache.shiro.realm.text that implement Initializable
 class IniRealm
          A Realm implementation that creates SimpleAccount instances based on Ini configuration.
 class PropertiesRealm
          A TextConfigurationRealm that defers all logic to the parent class, but just enables Properties 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.
 

Uses of Initializable in org.apache.shiro.util
 

Methods in org.apache.shiro.util with parameters of type Initializable
static void LifecycleUtils.init(Initializable initializable)
           
 



Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.