Package org.openntf.domino

Examples of org.openntf.domino.ACL


  }

  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);
      }
    }
View Full Code Here

TOP

Related Classes of org.openntf.domino.ACL

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.