ACLEnforcingMode
ACL enforcing modes.
| Name | Description | Value |
|---|---|---|
| ACLENFORCING_MODE_USE_PREVIOUS | Use the ACL previously stored for the object as a provided ACL (the previous ACL is typically the consolidated ACL (as if it was generated by the UI)). | 0 |
| ACLENFORCING_MODE_USE_PROVIDED | Use the caller-provided ACL. | 1 |
| ACLENFORCING_MODE_RESET_TO_DEFAULT | Use the ACL calculated from the properties as a provided ACL. | 2 |
Runtime Access
This enumeration is available at runtime on the MFiles global object under the VaultEnums namespace. Access enum values using MFiles.VaultEnums.ACLEnforcingMode.<value>.
Example:
const value = MFiles.VaultEnums.ACLEnforcingMode.ACLENFORCING_MODE_USE_PREVIOUS;
See also: MFiles Global Object