Managers (NotesDatabase - JavaScript)

Read-only. People, servers, and groups that have Manager access to a database.

Defined in

NotesDatabase

Syntax

getManagers() : java.util.Vector

Usage

Each element in the vector is a string whose value is the name of a person, server, or group with Manager access to the database.

The database must be open to use this property.

Examples

This button gets the names of all managers of the current database.
var managers = database.getManagers().iterator();
requestScope.status = "Managers in current database:";
while (managers.hasNext()) {
	requestScope.status += "\n\t" + managers.next();
}