35d3f923be224376c6d1524f3867c979867f1970
[utils] / crawler / kissweb / src / org / wamblee / crawler / kiss / scheduling / CrawlerExecutorImpl.java
1 /*
2  * Copyright 2006 the original author or authors.
3  * 
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
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
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.
15  */ 
16
17 package org.wamblee.crawler.kiss.scheduling;
18
19 import java.util.Date;
20
21 import org.wamblee.crawler.kiss.main.KissCrawler;
22
23 /**
24  * Implementation which executes the KiSS crawler for retrieving web content. 
25  */
26 public class CrawlerExecutorImpl implements CrawlerExecutor {
27     
28     private String _crawlerConfig; 
29     private String _programConfig; 
30     
31     /**
32      * Constructs the crawler executor. 
33      * @param aCrawlerConfig Crawler configuration file. 
34      * @param aProgramConfig Program configuration file. 
35      */
36     public CrawlerExecutorImpl(String aCrawlerConfig, String aProgramConfig) { 
37         _crawlerConfig = aCrawlerConfig; 
38         _programConfig = aProgramConfig; 
39     }
40
41     /* (non-Javadoc)
42      * @see org.wamblee.crawler.kiss.scheduling.CrawlerScheduler.CrawlerExecutor#execute(java.util.Date)
43      */
44     public void execute(Date aDate) throws Exception {
45         KissCrawler crawler = new KissCrawler(_crawlerConfig, _programConfig);       
46     }
47 }