You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
418 B

package com.yyt.moviecrawler.util;
import com.yyt.moviecrawler.model.Movie;
import com.yyt.moviecrawler.strategy.CrawlerStrategy;
import java.util.List;
public class CrawlerContext {
private CrawlerStrategy strategy;
public void setStrategy(CrawlerStrategy strategy) {
this.strategy = strategy;
}
public List<Movie> executeStrategy(int limit) {
return strategy.crawl(limit);
}
}