CacheProvider.java 201 B

12345678910
  1. package com.nuliji.tools.shiro.cache;
  2. import org.apache.shiro.cache.Cache;
  3. /**
  4. * Created by gaojie on 2017/11/7.
  5. */
  6. public interface CacheProvider {
  7. <k, v> Cache<k, v> getCache(String name);
  8. }