コード例 #1
0
ファイル: RoleAcl.java プロジェクト: Eltondcr/opengtsgrey
 public boolean hasWriteAccess() {
   return AclEntry.okWrite(this.getAccessLevel());
 }
コード例 #2
0
ファイル: RoleAcl.java プロジェクト: Eltondcr/opengtsgrey
 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());
 }
コード例 #3
0
ファイル: RoleAcl.java プロジェクト: Eltondcr/opengtsgrey
 public boolean hasReadAccess() {
   return AclEntry.okRead(this.getAccessLevel());
 }