import org.w3c.dom.Document;

/**
 * A simple interface for the XMLSocketThread to send a notification
 * of an incoming message
 */
public interface DOMProcessor {
    /**
     * called when an incoming message is received
     */
    void process(Document doc);
}
