Package org.springframework.security.providers.dao.cache

Examples of org.springframework.security.providers.dao.cache.EhCacheBasedUserCache


    bind(UserCache.class).toProvider(new Provider<UserCache>() {

      public UserCache get() {
        final Cache cache = CacheManager.getInstance().getCache(USER_DETAILS_CACHE_NAME);
        assert cache != null;
        final EhCacheBasedUserCache uc = new EhCacheBasedUserCache();
        uc.setCache(cache);
        return uc;
      }

    }).in(Scopes.SINGLETON);
View Full Code Here

TOP

Related Classes of org.springframework.security.providers.dao.cache.EhCacheBasedUserCache

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.