2 * Copyright 2006 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.crawler.kiss.scheduling;
19 import java.util.Date;
21 import org.wamblee.crawler.kiss.main.KissCrawler;
22 import org.wamblee.crawler.kiss.main.Report;
23 import org.wamblee.crawler.kiss.notification.Notifier;
26 * Implementation which executes the KiSS crawler for retrieving web content.
28 public class CrawlerExecutorImpl implements CrawlerExecutor {
30 private String _crawlerConfig;
31 private String _programConfig;
32 private Notifier _notifier;
35 * Constructs the crawler executor.
36 * @param aCrawlerConfig Crawler configuration file.
37 * @param aProgramConfig Program configuration file.
38 * @param aNotifier Object used to send notifications.
40 public CrawlerExecutorImpl(String aCrawlerConfig, String aProgramConfig, Notifier aNotifier) {
41 _crawlerConfig = aCrawlerConfig;
42 _programConfig = aProgramConfig;
43 _notifier = aNotifier;
47 * @see org.wamblee.crawler.kiss.scheduling.CrawlerScheduler.CrawlerExecutor#execute(java.util.Date)
49 public void execute(Date aDate, Report aReport) throws Exception {
50 new KissCrawler(_crawlerConfig, _programConfig, _notifier, aReport);