All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.exist.xquery.modules.xslfo.ProcessorAdapter Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package org.exist.xquery.modules.xslfo;

import java.io.OutputStream;
import java.util.Properties;
import org.exist.storage.DBBroker;
import org.exist.xquery.XPathException;
import org.exist.xquery.value.NodeValue;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;

/**
 * @author Adam Retter
 */
public interface ProcessorAdapter {

    public ContentHandler getContentHandler(DBBroker broker, NodeValue configFile, Properties parameters, String mimeType, OutputStream os) throws XPathException, SAXException;

    public void cleanup();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy