我有一个类来为用户、组和其他存储类似 unix 的权限。原则上它是一个有限的访问控制列表,但我不想将它命名为 ACL,因为通常 ACL 是不同的东西。
这个类看起来基本上是这样的:
class X {
boolean userRead, userWrite, userExecute;
boolean groupRead, groupWrite, groupExecute;
boolean otherRead, otherWrite, otherExecute;
}
如何命名这样的类?Unix中的名称是什么?