Package org.archive.cdxserver.filter

Examples of org.archive.cdxserver.filter.FilenamePrefixFilter


   
    apToken = (APContextAuthToken)token;
   
    AccessPoint ap = apToken.ap;
   
    FilenamePrefixFilter include = null, exclude = null;
   
    if (ap.getFileIncludePrefixes() != null) {
      include = new FilenamePrefixFilter();
      include.setExclusion(false);
      include.setPrefixList(ap.getFileIncludePrefixes());
    }
   
    if (ap.getFileExcludePrefixes() != null) {
      exclude = new FilenamePrefixFilter();
      exclude.setExclusion(true);
      exclude.setPrefixList(ap.getFileExcludePrefixes());
    }
   
    ExclusionFilter adminFilter = null;
View Full Code Here

TOP

Related Classes of org.archive.cdxserver.filter.FilenamePrefixFilter

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.