| com.sun.jbi.engine.xslt.TransformationProcessor
All known Subclasses: com.sun.jbi.engine.xslt.TransformationImpl,
TransformationProcessor | public interface TransformationProcessor (Code) | | This class provides interfaces to process the messages received by the
Transformation implementations. It also contains interfaces to create the
outbound response and fault message.
author: Sun Microsystems, Inc. |
Method Summary | |
boolean | doTransform(Source input, String xsltfile, Result result) Does transformation on the input DOM object using the stylesheet.
Parameters: input - - Input for Transformation. Parameters: xsltfile - - XSLT Stylesheet. Parameters: result - - a Result object containing the message response. | boolean | transform(Source input, Result result) Does transformation on the input DOM object using the stylesheet.
Parameters: input - - Input for Transformation. Parameters: result - - a Result object containing the message response. |
doTransform | boolean doTransform(Source input, String xsltfile, Result result) throws Exception(Code) | | Does transformation on the input DOM object using the stylesheet.
Parameters: input - - Input for Transformation. Parameters: xsltfile - - XSLT Stylesheet. Parameters: result - - a Result object containing the message response. boolean throws: Exception - exception |
transform | boolean transform(Source input, Result result) throws Exception(Code) | | Does transformation on the input DOM object using the stylesheet.
Parameters: input - - Input for Transformation. Parameters: result - - a Result object containing the message response. boolean throws: Exception - exception |
|
|