Package com.google.enterprise.connector.filesystem.AclBuilder

Examples of com.google.enterprise.connector.filesystem.AclBuilder.AclProperties


      if (root == null) {
        LOGGER.warning("Failed to open start path: " + startPath);
        return;
      }
      long startTime = clock.getTimeMillis();
      AclProperties aclProps = context.getPropertyManager();
      boolean returnDirectories = root.getFileSystemType().supportsAcls()
        && aclProps.isPushAcls() && aclProps.supportsInheritedAcls()
        && !aclProps.isMarkAllDocumentsPublic();

      try {
        FileIterator iter = new FileIterator(root, context,
            getIfModifiedSince(startTime), returnDirectories);
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.filesystem.AclBuilder.AclProperties

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.