Package com.subgraph.vega.impl.scanner.urls

Examples of com.subgraph.vega.impl.scanner.urls.UriParser


    reloadModules();
  }
 
  private UriParser createUriParser(IWebCrawler crawler) {
    final IContentAnalyzer contentAnalyzer = scanner.getContentAnalyzerFactory().createContentAnalyzer(scanInstance);
    return new UriParser(config,
        basicModules,
        workspace,
        crawler,
        new UriFilter(config),
        contentAnalyzer,
View Full Code Here


    this.scanInstance = scan.getScanInstance();
    currentCrawler = scan.getScanner().getWebCrawlerFactory().create(scan.getRequestEngine());
    contentAnalyzer = scan.getScanner().getContentAnalyzerFactory().createContentAnalyzer(scanInstance);
    contentAnalyzer.setResponseProcessingModules(scan.getResponseModules());
    uriFilter = new UriFilter(scan.getConfig());
    uriParser = new UriParser(scan.getConfig(), scan.getBasicModules(), scan.getWorkspace(), currentCrawler, uriFilter, contentAnalyzer, scanInstance, false);
    scanTargetScope = scan.getConfig().getScanTargetScope();

    logger.setLevel(Level.ALL);

//    URI redirectURI = scan.getRedirectURI();
View Full Code Here

TOP

Related Classes of com.subgraph.vega.impl.scanner.urls.UriParser

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.