restructuring into packages.
[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      * @param aReport Report to send. 
18      */
19     void send(Element aReport) throws NotificationException;
20 }