I have a class to store unix-like permissions for user, group and other. In principle it is a limited access control list but I don't want to name it ACL, because usually an ACL is something different.
The class looks basically like this:
class X {
boolean userRead, userWrite, userExecute;
boolean groupRead, groupWrite, groupExecute;
boolean otherRead, otherWrite, otherExecute;
}
How to name a class like this? What is the name in Unix?