/** {@inheritDoc} */
@Override
public NotesACLEntry getNextEntry(NotesACLEntry previousEntry)
throws NotesConnectorExceptionImpl {
try {
ACLEntry entry = getNotesObject().getNextEntry(
((NotesACLEntryImpl) previousEntry).getNotesObject());
if (entry == null) {
return null;
}
return new NotesACLEntryImpl(entry);