Package org.apache.shiro.cache.ehcache

Examples of org.apache.shiro.cache.ehcache.EhCacheManager


    // reload the config
    this.securityConfiguration.clearCache();

    // setup the CacheManager ( this could be injected if we where less coupled with ehcache)
    // The plexus wrapper can interpolate the config
    EhCacheManager ehCacheManager = new EhCacheManager();
    ehCacheManager.setCacheManager(cacheManager);
    this.getSecurityManager().setCacheManager(ehCacheManager);

    if (org.apache.shiro.util.Initializable.class.isInstance(this.getSecurityManager())) {
      ((org.apache.shiro.util.Initializable) this.getSecurityManager()).init();
    }
View Full Code Here

TOP

Related Classes of org.apache.shiro.cache.ehcache.EhCacheManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.