}
private ACLEntry getNext() {
if (nextEntry_ == null) {
ACLEntry currentEntry = getCurrentEntry();
ACL acl = getAcl();
try {
if (currentEntry == null) {
if (isDone()) {
nextEntry_ = null;
} else {
nextEntry_ = acl.getFirstEntry();
}
} else {
nextEntry_ = acl.getNextEntry(currentEntry);
}
} catch (Throwable t) {
DominoUtils.handleException(t);
}
}