org.springframework.security.acls.model
Interface AclCache

All Known Implementing Classes:
EhCacheBasedAclCache

public interface AclCache

A caching layer for JdbcAclService.

Version:
$Id: AclCache.java 3847 2009-08-31 22:15:37Z ltaylor $
Author:
Ben Alex

Method Summary
 void clearCache()
           
 void evictFromCache(ObjectIdentity objectIdentity)
           
 void evictFromCache(Serializable pk)
           
 MutableAcl getFromCache(ObjectIdentity objectIdentity)
           
 MutableAcl getFromCache(Serializable pk)
           
 void putInCache(MutableAcl acl)
           
 

Method Detail

evictFromCache

void evictFromCache(Serializable pk)

evictFromCache

void evictFromCache(ObjectIdentity objectIdentity)

getFromCache

MutableAcl getFromCache(ObjectIdentity objectIdentity)

getFromCache

MutableAcl getFromCache(Serializable pk)

putInCache

void putInCache(MutableAcl acl)

clearCache

void clearCache()


Copyright © 2004-2009 SpringSource, Inc. All Rights Reserved.