ACL (NotesDatabase - JavaScript)

Read-only. The access control list for a database.

Defined in

NotesDatabase

Syntax

getACL() : NotesACL

Usage

The database must be open to use this property.

Examples

This button gets the names of the ACL entries for the current database.
var acl:NotesACL = database.getACL();
var acle:NotesACLEntry = acl.getFirstEntry();
requestScope.status = "ACL entries";
do {
	requestScope.status += "\n" + acle.getName();
} while ((acle = acl.getNextEntry(acle)) != null)