Access Levels
There are five access levels available for scseAuth. The access levels are defined in the context of an ixmp4 platform and the level of access a user has on it.
Higher access levels always include the permissions of lower access levels.
enum AccessLevel {
ANONYMOUS = 0,
NONACCESSOR = 1, // is authenticated but not authorized to view the ixmp4 platform
ACCESSOR = 2, // has an explicit or implicit accessor role on the platform
SUBMITTER = 3, // has any kind of SUBMIT or EDIT permission on the platform
MANAGER = 4, // has a manager role on the platform
SUPERUSER = 5,
}