Package net.matuschek.http

Examples of net.matuschek.http.DownloadRuleSet


    if ((urlCheck != null) && (!urlCheck.checkURLForProcessing(u))) {
      log.debug("processing not allowed by URLCheck:" + u);
      return false;
    }
   
    DownloadRuleSet downloadRuleSet = httpTool.getDownloadRuleSet();
    if (downloadRuleSet != null && !downloadRuleSet.processAllowed(doc.getHttpHeaders())) {
      log.debug("processing not allowed by DownloadRuleSet:" + u);
      return false;
    }

    return true;
View Full Code Here

TOP

Related Classes of net.matuschek.http.DownloadRuleSet

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.