Interface Environment

  • All Known Subinterfaces:
    NamedObjectEnvironment
    All Known Implementing Classes:
    BasicIniEnvironment, DefaultEnvironment

    public interface Environment
    An Environment instance encapsulates all of the objects that Shiro requires to function. It is essentially a 'meta' object from which all Shiro components can be obtained for an application.

    An Environment instance is usually created as a result of parsing a Shiro configuration file. The environment instance can be stored in any place the application deems necessary, and from it, can retrieve any of Shiro's components that might be necessary in implementing security behavior.

    For example, the most obvious component accessible via an Environment instance is the application's securityManager.

    Since:
    1.2
    • Method Detail

      • getSecurityManager

        SecurityManager getSecurityManager()
        Returns the application's SecurityManager instance.
        Returns:
        the application's SecurityManager instance.