public Acl applyAcl(String repositoryId, String objectId, Acl addAces, Acl removeAces,
AclPropagation aclPropagation, ExtensionsData extension) {
CmisService service = getService(repositoryId);
try {
return service.applyAcl(repositoryId, objectId, addAces, removeAces, aclPropagation, extension);
} finally {
service.close();
}
}