mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-09 11:53:30 +00:00
SEC-697: Add setOwner(Sid) to MutableAcl interface.
This commit is contained in:
parent
337155f0ea
commit
af9715c168
@ -56,6 +56,13 @@ public interface MutableAcl extends Acl {
|
|||||||
void insertAce(Serializable afterAceId, Permission permission, Sid sid, boolean granting)
|
void insertAce(Serializable afterAceId, Permission permission, Sid sid, boolean granting)
|
||||||
throws NotFoundException;
|
throws NotFoundException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Changes the present owner to a different owner.
|
||||||
|
*
|
||||||
|
* @param newOwner the new owner (mandatory; cannot be null)
|
||||||
|
*/
|
||||||
|
void setOwner(Sid newOwner);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Change the value returned by {@link Acl#isEntriesInheriting()}.
|
* Change the value returned by {@link Acl#isEntriesInheriting()}.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user