org.milyn.delivery.replay.SAXEventReplay Maven / Gradle / Ivy
package org.milyn.delivery.replay;
import org.milyn.SmooksException;
import org.xml.sax.SAXException;
/**
* SAX event replay interface.
*
* @author [email protected]
*/
public interface SAXEventReplay {
/**
* Replay the last SAX event onto the supplied SAX {@link org.xml.sax.ContentHandler} instance.
*
* @param handler The handler on whic to replay the last event.
* @throws SmooksException Error replaying last event.
*/
void replay(org.xml.sax.ContentHandler handler) throws SmooksException;
}