/** * Copyright (c) 2005 UPS_SCS NL * */ package org.wamblee.crawler.kiss.notification; import org.dom4j.Element; /** * Object used to send notifications about the actions of the crawler. * */ public interface Notifier { /** * Sends a notification. * @param aReport Report to send. */ void send(Element aReport) throws NotificationException; }