createWithOwner static method Null safety
- LCUser owner
Creates an ACL object of LCUser.
Implementation
static LCACL createWithOwner(LCUser owner) {
LCACL acl = new LCACL();
acl.setUserReadAccess(owner, true);
acl.setUserWriteAccess(owner, true);
return acl;
}