b2d35a909fa2f9a7feaa7f3482004fa56a01ca4e
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / notification / Notifier.java
1 /**
2  * Copyright (c) 2005 UPS_SCS NL
3  *  
4  */
5 package org.wamblee.crawler.kiss.notification;
6
7 import org.dom4j.Element;
8
9 /**
10  * Object used to send notifications about the actions of the crawler.
11  * 
12  */
13 public interface Notifier {
14
15     /**
16      * Sends a notification.
17      * 
18      * @param aReport
19      *            Report to send.
20      */
21     void send(Element aReport) throws NotificationException;
22 }