interface AclCacheInterface
AclCache Interface
Methods
evictFromCacheById(string $primaryKey) Removes an ACL from the cache | ||
evictFromCacheByIdentity(ObjectIdentityInterface $oid) Removes an ACL from the cache | ||
AclInterface | getFromCacheById(int $primaryKey) Retrieves an ACL for the given object identity primary key from the cache | |
AclInterface | getFromCacheByIdentity(ObjectIdentityInterface $oid) Retrieves an ACL for the given object identity from the cache | |
putInCache(AclInterface $acl) Stores a new ACL in the cache | ||
clearCache() Removes all ACLs from the cache |
Details
evictFromCacheById(string $primaryKey)
Removes an ACL from the cache
evictFromCacheByIdentity(ObjectIdentityInterface $oid)
Removes an ACL from the cache
The ACL which is returned, must reference the passed object identity.
AclInterface getFromCacheById(int $primaryKey)
Retrieves an ACL for the given object identity primary key from the cache
AclInterface getFromCacheByIdentity(ObjectIdentityInterface $oid)
Retrieves an ACL for the given object identity from the cache
putInCache(AclInterface $acl)
Stores a new ACL in the cache
clearCache()
Removes all ACLs from the cache
Please login to continue.