public boolean hasWriteAccess() { return AclEntry.okWrite(this.getAccessLevel()); }
public boolean hasAllAccess() { // This can be implied to mean 'read all' access if no writing is allowed for this ACL return AclEntry.okAll(this.getAccessLevel()); }
public boolean hasReadAccess() { return AclEntry.okRead(this.getAccessLevel()); }