Skip to main content

NACLType

Each named ACL belongs to exactly one type. Types are defined as bit flags so that multiple types can be combined with bitwise OR for filtering purposes, such as in GetNamedACLs.

NameDescriptionValue
NACLTYPE_NONENone.0
NACLTYPE_NORMALNormal NACL that the user can select when specifying the permissions of the object, for example.1
NACLTYPE_INTERNALInternal NACL, used for internal purposes.2

Runtime Access

This enumeration is available at runtime on the MFiles global object under the VaultEnums namespace. Access enum values using MFiles.VaultEnums.NACLType.<value>.

Example:

const value = MFiles.VaultEnums.NACLType.NACLTYPE_NONE;

See also: MFiles Global Object