package strategy; import model.CrawlResult; import exception.ParseException; import java.io.IOException; import java.util.List; public interface CrawlStrategy { List crawlPage(int page) throws IOException, ParseException; String getBaseUrl(); String getSiteName(); int getPageSize(); }