IsPerson (ACLEntry - Java)

Read-Write. Indicates whether this is a person ACL entry.

Defined in

ACLEntry

Data type

boolean

Syntax

public boolean isPerson()
    throws NotesException
public void setPerson(boolean flag)
    throws NotesException

Usage

IsPerson is true if UserType is TYPE_PERSON, TYPE_MIXED_GROUP, or TYPE_PERSON_GROUP.

Reading the property means the entry is a person or a person group. Writing the property makes the entry a person if IsGroup is false and a person group is IsGroup is true.

For setPerson, you must call save on the ACL if you want the modified ACL to be saved to disk.

Example