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.
13 lines
306 B
13 lines
306 B
package com.crawler.crawler;
|
|
|
|
import com.crawler.model.CrawlerConfig;
|
|
import com.crawler.model.CrawlerData;
|
|
|
|
import java.util.List;
|
|
|
|
public interface Crawler {
|
|
void setConfig(CrawlerConfig config);
|
|
CrawlerConfig getConfig();
|
|
String getCrawlerName();
|
|
List<CrawlerData> crawl();
|
|
}
|