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

org.milyn.xml.SmooksXMLReader Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
	Milyn - Copyright (C) 2006 - 2010

	This library is free software; you can redistribute it and/or
	modify it under the terms of the GNU Lesser General Public
	License (version 2.1) as published by the Free Software 
	Foundation.

	This library is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
    
	See the GNU Lesser General Public License for more details:    
	http://www.gnu.org/licenses/lgpl.txt
*/

package org.milyn.xml;

import org.milyn.container.ExecutionContext;
import org.milyn.delivery.ContentHandler;
import org.xml.sax.XMLReader;

/**
 * Smooks {@link XMLReader}.
 * 

* {@link org.milyn.delivery.dom.DOMParser} allows you to target a specific SAX Parser at a specific message type. * This lets you parse a stream of any type, convert it to a stream of SAX event and so treat the stream * as an XML data stream, even when the stream is non-XML. *

* The parser resource configuration "selector" needs to have a value of "org.xml.sax.driver" i.e. * selector="org.xml.sax.driver". * * @author tfennelly */ public interface SmooksXMLReader extends XMLReader, ContentHandler { /** * Set the Smooks {@link ExecutionContext} on the implementing class. * @param executionContext The Smooks {@link ExecutionContext}. */ public void setExecutionContext(ExecutionContext executionContext); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy