List of usage examples for org.apache.shiro.util Initializable interface-usage
From source file annis.security.MultipleIniWebEnvironment.java
/**
* An extension of the {@link DefaultWebEnvironment} class allows several
* {@link Ini} files.
*
* <p>
* This class assumes that the config locations ({@link #setConfigLocations(java.lang.String[]) ) }
From source file be.rubus.octopus.jsr375.demo.jsr375.IdentityStoreMatcher.java
/** * */ public class IdentityStoreMatcher implements CredentialsMatcher, Initializable { public static final String CALLER_GROUPS = "callerGroups";
From source file cn.com.xl.core.shiro.redis.RedisCacheManager.java
/** * ?? */ public class RedisCacheManager implements CacheManager, Initializable, Destroyable { private String keyPrefix = "shiro_cache:";
From source file com.aerospike.shiro.AerospikeSessionDAO.java
public class AerospikeSessionDAO extends CachingSessionDAO implements Destroyable, Initializable { // Read from these system properties at init time if they exist @SuppressWarnings("serial") private static final Map<String, String> PROPERTY_MAP = Collections .unmodifiableMap(new HashMap<String, String>() { {
From source file com.biu.core.shiro.redis.RedisCacheManager.java
/** * ?? */ public class RedisCacheManager implements CacheManager, Initializable, Destroyable { private String keyPrefix = "shiro_cache:";
From source file com.github.zbiljic.shiro.cache.infinispan.InfinispanCacheManager.java
/**
* Shiro {@code CacheManager} implementation utilizing the Infinispan data grid for all cache
* functionality.
*
* This class can {@link #setCacheManager(org.infinispan.manager.EmbeddedCacheManager) accept} a
* manually configured {@link org.infinispan.manager.DefaultCacheManager DefaultCacheManager}
From source file com.glaf.shiro.cache.guava.GuavaCacheManager.java
public class GuavaCacheManager implements CacheManager, Initializable, Destroyable { protected int cacheSize = 100000; protected int expireMinutes = 720;
From source file com.glaf.shiro.cache.redis.RedisCacheManager.java
/** * Redis ? */ public class RedisCacheManager implements CacheManager, Initializable, Destroyable { protected String host; protected int port;
From source file com.glaf.shiro.cache.zookeeper.ZooKeeperCacheManager.java
public class ZooKeeperCacheManager implements CacheManager, Initializable, Destroyable { private volatile CuratorFramework zkClient; protected String servers = "localhost:2181";
From source file com.infinities.skyport.distributed.shiro.DistributedCacheManager.java
public interface DistributedCacheManager extends CacheManager, Initializable, Destroyable { public void setCacheManagerConfigFile(String classpathLocation); public boolean getSchedulerEnabled(); }