package strategy; import model.Paper; import java.util.List; public interface CrawlStrategy { List crawl() throws Exception; String getOutputFileName(); }