Package org.lockss.laaws.crawler.api
Interface CrawlersApi
- All Known Implementing Classes:
CrawlersApiController
@Validated
public interface CrawlersApi
-
Method Summary
Modifier and TypeMethodDescriptiondefault org.springframework.http.ResponseEntity<CrawlerConfig>getCrawlerConfig(String crawlerId) default org.springframework.http.ResponseEntity<CrawlerStatuses>
-
Method Details
-
getDelegate
CrawlersApiDelegate getDelegate() -
getCrawlerConfig
@RequestMapping(value="/crawlers/{crawlerId}", produces="application/json", method=GET) default org.springframework.http.ResponseEntity<CrawlerConfig> getCrawlerConfig(@PathVariable("crawlerId") String crawlerId) -
getCrawlers
@RequestMapping(value="/crawlers", produces="application/json", method=GET) default org.springframework.http.ResponseEntity<CrawlerStatuses> getCrawlers()
-