I want to extend the permissions given for an user to an entity.
I am able to create ACLs via MutableAclService.
MutableAcl acl = this.mutableAclService.createAcl(new ObjectIdentityImpl(entity));
acl.setOwner(SYSTEM_PRINCIPAL_SID);
acl.insertAce(0, permission, grantToSid, true);
this.mutableAclService.updateAcl(acl);
But I don't know how to change ACLs. For example if a user has Read Privileges to an entity, I want to provide him additional Write Privileges. Or give an other user the same privileges.
My first try was to invoke MutableAclService.createAcl twice, but that failed:
org.springframework.security.acls.model.AlreadyExistsException: Object identity 'org.springframework.security.acls.domain.ObjectIdentityImpl[Type: test.Entity; Identifier: 3]' already exists
Ok that seams to be correct, wrong way. But how to do it then? How to change the acl permissions for an entity where already some permissions are defined?