Package com.adaptris.util.text.xml
Class XmlTransformerFactoryImpl
- java.lang.Object
-
- com.adaptris.util.text.xml.XmlTransformerFactoryImpl
-
- All Implemented Interfaces:
XmlTransformerFactory
- Direct Known Subclasses:
StxTransformerFactory,XsltTransformerFactory
public abstract class XmlTransformerFactoryImpl extends java.lang.Object implements XmlTransformerFactory
-
-
Constructor Summary
Constructors Constructor Description XmlTransformerFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description XmlTransformerconfigure(XmlTransformer xmlTransformer)java.lang.BooleangetFailOnRecoverableError()Deprecated.since 3.6.5, XSLT 3.0 has eliminated all "recoverable errors" from the specification.KeyValuePairSetgetTransformerFactoryAttributes()KeyValuePairSetgetTransformerFactoryFeatures()DocumentBuilderFactoryBuildergetXmlDocumentFactoryConfig()voidsetFailOnRecoverableError(java.lang.Boolean b)Deprecated.since 3.6.5, XSLT 3.0 has eliminated all "recoverable errors" from the specification.voidsetTransformerFactoryAttributes(KeyValuePairSet attr)voidsetTransformerFactoryFeatures(KeyValuePairSet features)voidsetXmlDocumentFactoryConfig(DocumentBuilderFactoryBuilder xml)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.adaptris.util.text.xml.XmlTransformerFactory
createTransformer, createTransformer
-
-
-
-
Method Detail
-
getXmlDocumentFactoryConfig
public DocumentBuilderFactoryBuilder getXmlDocumentFactoryConfig()
-
setXmlDocumentFactoryConfig
public void setXmlDocumentFactoryConfig(DocumentBuilderFactoryBuilder xml)
-
configure
public XmlTransformer configure(XmlTransformer xmlTransformer) throws java.lang.Exception
- Specified by:
configurein interfaceXmlTransformerFactory- Throws:
java.lang.Exception
-
getTransformerFactoryAttributes
public KeyValuePairSet getTransformerFactoryAttributes()
-
setTransformerFactoryAttributes
public void setTransformerFactoryAttributes(KeyValuePairSet attr)
-
getTransformerFactoryFeatures
public KeyValuePairSet getTransformerFactoryFeatures()
-
setTransformerFactoryFeatures
public void setTransformerFactoryFeatures(KeyValuePairSet features)
-
getFailOnRecoverableError
@Deprecated public java.lang.Boolean getFailOnRecoverableError()
Deprecated.since 3.6.5, XSLT 3.0 has eliminated all "recoverable errors" from the specification. If you are using a previous version of saxon or xalan then this will still have an effect.
-
setFailOnRecoverableError
@Deprecated public void setFailOnRecoverableError(java.lang.Boolean b)
Deprecated.since 3.6.5, XSLT 3.0 has eliminated all "recoverable errors" from the specification. If you are using a previous version of saxon or xalan then this will still have an effect.Whether or not to fail on a recoverable error.- Parameters:
b- true to fail on a recoverable error which is the default, false otherwise.
-
-