package com.gxx.manage.shiro.cache;
import org.apache.shiro.cache.Cache;
/**
*
* - Title:
* -
* shiro缓存管理接口
*
* - Description:
* -
*
none
*
*
*
* @author Administrator
* @version 1.0, 2015年9月22日
* @since manage
*
*/
public interface ShiroCacheManager {
Cache getCache(String name);
void destroy();
}