Interface AclCache
-
- All Known Implementing Classes:
EhCacheBasedAclCache
,SpringCacheBasedAclCache
public interface AclCache
A caching layer forJdbcAclService
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearCache()
void
evictFromCache(java.io.Serializable pk)
void
evictFromCache(ObjectIdentity objectIdentity)
MutableAcl
getFromCache(java.io.Serializable pk)
MutableAcl
getFromCache(ObjectIdentity objectIdentity)
void
putInCache(MutableAcl acl)
-
-
-
Method Detail
-
evictFromCache
void evictFromCache(java.io.Serializable pk)
-
evictFromCache
void evictFromCache(ObjectIdentity objectIdentity)
-
getFromCache
MutableAcl getFromCache(ObjectIdentity objectIdentity)
-
getFromCache
MutableAcl getFromCache(java.io.Serializable pk)
-
putInCache
void putInCache(MutableAcl acl)
-
clearCache
void clearCache()
-
-