getNextEntry (ACL - Java)

Returns the next ACL entry or the one following a specified entry.

Defined in

ACL

Syntax

public ACLEntry getNextEntry()
    throws NotesException
public ACLEntry getNextEntry(ACLEntry entry)
    throws NotesException

Parameters


ACLEntry entry

Any entry in the ACL. Cannot be null.

Return value


ACLEntry

The ACL entry following the entry specified as the parameter. Returns null if there are no more entries.

Usage

With no parameter, this method returns the entry following the last entry retrieved. The no-parameter method improves performance for remote operations because ACL entries are cached locally.

The order of the ACL entries is unspecified. The order is not alphabetical and does not correspond to UI displays.

Example