ユーザー、グループなどのUNIXのようなアクセス許可を保存するクラスがあります。原則として、これは制限付きのアクセス制御リストですが、ACL とは名前を付けたくありません。通常、ACL は別のものであるためです。
クラスは基本的に次のようになります。
class X {
boolean userRead, userWrite, userExecute;
boolean groupRead, groupWrite, groupExecute;
boolean otherRead, otherWrite, otherExecute;
}
このようなクラスに名前を付ける方法は?Unixでの名前は何ですか?