XSLTTransformer(URL source)
Creates a new transformer reading the XSLT from the URL source.
XSLTTransformer(URL source,
Map<String,Object> attributes)
Creates a new transformer reading the XSLT from the URL source and
setting the TransformerFactory attributes.
Method Summary
void
setConfiguration(Map<String,? extends Object> configuration)
Pass component specific configuration parameters to the pipeline
component in a generic way.
void
setParameters(Map<String,? extends Object> parameters)
Sets the XSLT parameters to be applied to XSLT stylesheet.
Creates a new transformer reading the XSLT from the URL source and
setting the TransformerFactory attributes.
This constructor is useful when users want to perform XSLT transformation
using xsltc.
Parameters:
source - the XSLT URL source
attributes - the Transformer Factory attributes
Method Detail
setParameters
public void setParameters(Map<String,? extends Object> parameters)
Sets the XSLT parameters to be applied to XSLT stylesheet.
Parameters:
parameters - the XSLT parameters to be applied to XSLT stylesheet
setConfiguration
public void setConfiguration(Map<String,? extends Object> configuration)
Pass component specific configuration parameters to the pipeline
component in a generic way. This is useful in environments that
automatically assemble pipelines with their components and can't use the
components constructors or setters.