getEntry (ACL - Java)

Given a name, finds its entry in an ACL.

Defined in

ACL

Syntax

public ACLEntry getEntry(String ename)
    throws NotesException

Parameters

String ename

The name whose ACL entry you want to find. You must supply the complete name, but hierarchical names can be in abbreviated format. Case is not significant.

Return value


ACLEntry

The ACL entry that matches the name. If name is not in the ACL, returns null.

Usage

This method can find people, groups, or servers in an ACL. If a person is not listed explicitly in the ACL, but is a member of a group listed in the ACL, getEntry does not find that person's name.

Example