Example usage for org.apache.shiro.cache.ehcache EhCacheManager subclass-usage

List of usage examples for org.apache.shiro.cache.ehcache EhCacheManager subclass-usage

Introduction

In this page you can find the example usage for org.apache.shiro.cache.ehcache EhCacheManager subclass-usage.

Usage

From source file com.ikanow.aleph2.security.service.UserSpecificEhCacheManager.java

/** This class sets the temporary storage directory into <java.io.tmpdir>/shiro-cache-<user.name">
 * e.g. /tmp/shiro-cache-tomcat
 *  
 * @author jfreydank
 *
 */

From source file com.infinities.skyport.distributed.impl.local.LocalCacheManager.java

public class LocalCacheManager extends EhCacheManager implements DistributedCacheManager {

    @Override
    public boolean getSchedulerEnabled() {
        return true;
    }

From source file com.zjjf.analysis.services.security.ShiroCacheManager.java

public class ShiroCacheManager extends EhCacheManager {

    private static final Logger log = LoggerFactory.getLogger(ShiroCacheManager.class);

    private boolean cacheManagerImplicitlyCreated = false;

From source file org.apache.hadoop.gateway.shirorealm.KnoxCacheManager.java

public class KnoxCacheManager extends EhCacheManager {

    public KnoxCacheManager() {
        setCacheManager(net.sf.ehcache.CacheManager.create());
    }
}