Class ConversionService
- java.lang.Object
-
- com.parasoft.findings.jenkins.coverage.converter.ConversionService
-
- All Implemented Interfaces:
Serializable
public class ConversionService extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ConversionService.CoverageEntityResolver
Skip DTD Entity resolution.
-
Constructor Summary
Constructors Constructor Description ConversionService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
convert(StreamSource xslSource, File inputFile, File outFile, Map<net.sf.saxon.s9api.QName,net.sf.saxon.s9api.XdmValue> params)
Launches an XSLT conversion from a source to an OutputStream.void
convert(StreamSource xslSource, InputSource inputFile, File outFile, Map<net.sf.saxon.s9api.QName,net.sf.saxon.s9api.XdmValue> params)
Launches an XSLT conversion from a source to an OutputStream.
-
-
-
Method Detail
-
convert
public void convert(StreamSource xslSource, File inputFile, File outFile, Map<net.sf.saxon.s9api.QName,net.sf.saxon.s9api.XdmValue> params) throws ConversionException
Launches an XSLT conversion from a source to an OutputStream. This methods uses the net.sf.saxon packages.- Parameters:
xslSource
- the source of the xslinputFile
- the input fileoutFile
- the output fileparams
- the parameter map- Throws:
ConversionException
- the convert exception
-
convert
public void convert(StreamSource xslSource, InputSource inputFile, File outFile, Map<net.sf.saxon.s9api.QName,net.sf.saxon.s9api.XdmValue> params) throws ConversionException
Launches an XSLT conversion from a source to an OutputStream. This methods uses the net.sf.saxon packages.- Parameters:
xslSource
- the source of the xslinputFile
- the input fileoutFile
- the output fileparams
- the parameter map- Throws:
ConversionException
- the convert exception
-
-