com.goikosoft.crawler4j.parser.ParserInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crawler4j Show documentation
Show all versions of crawler4j Show documentation
crawler4j: Open Source Web Crawler for Java. Modified by Dario Goikoetxea to add POST capabilities
package com.goikosoft.crawler4j.parser;
import com.goikosoft.crawler4j.crawler.Page;
import com.goikosoft.crawler4j.crawler.exceptions.ParseException;
/**
* Custom interface for all parsers.
* @author Dario Goikoetxea
*
*/
public interface ParserInterface {
void parse(Page page, String contextURL) throws NotAllowedContentException, ParseException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy