Example #1
0
 public boolean hasWriteAccess() {
   return AclEntry.okWrite(this.getAccessLevel());
 }
Example #2
0
 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());
 }
Example #3
0
 public boolean hasReadAccess() {
   return AclEntry.okRead(this.getAccessLevel());
 }