package strategy; import model.Paper; import java.util.List; public interface CrawlerStrategy { String getPlatformName(); List crawl(String url, int count) throws Exception; boolean supportsUrl(String url); }