SEC-1054: Add method "clear" to interface AclCache. As requested.

This commit is contained in:
Luke Taylor 2009-03-16 09:31:52 +00:00
parent ccf422af5a
commit 766aca885b
2 changed files with 8 additions and 2 deletions

View File

@ -39,4 +39,6 @@ public interface AclCache {
MutableAcl getFromCache(Serializable pk);
void putInCache(MutableAcl acl);
void clearCache();
}

View File

@ -137,4 +137,8 @@ public class EhCacheBasedAclCache implements AclCache {
}
return value;
}
public void clearCache() {
cache.removeAll();
}
}