Interface XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- XsltEndpointBuilderFactory
public static interface XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the XSLT component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default XsltEndpointBuilderFactory.XsltEndpointBuilder
basic()
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
entityResolver(Object entityResolver)
To use a custom org.xml.sax.EntityResolver with javax.xml.transform.sax.SAXSource.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
entityResolver(String entityResolver)
To use a custom org.xml.sax.EntityResolver with javax.xml.transform.sax.SAXSource.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
errorListener(Object errorListener)
Allows to configure to use a custom javax.xml.transform.ErrorListener.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
errorListener(String errorListener)
Allows to configure to use a custom javax.xml.transform.ErrorListener.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
resultHandlerFactory(Object resultHandlerFactory)
Allows you to use a custom org.apache.camel.builder.xml.ResultHandlerFactory which is capable of using custom org.apache.camel.builder.xml.ResultHandler types.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
resultHandlerFactory(String resultHandlerFactory)
Allows you to use a custom org.apache.camel.builder.xml.ResultHandlerFactory which is capable of using custom org.apache.camel.builder.xml.ResultHandler types.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
transformerFactory(Object transformerFactory)
To use a custom XSLT transformer factory.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
transformerFactory(String transformerFactory)
To use a custom XSLT transformer factory.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
transformerFactoryClass(String transformerFactoryClass)
To use a custom XSLT transformer factory, specified as a FQN class name.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
transformerFactoryConfigurationStrategy(Object transformerFactoryConfigurationStrategy)
A configuration strategy to apply on freshly created instances of TransformerFactory.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
transformerFactoryConfigurationStrategy(String transformerFactoryConfigurationStrategy)
A configuration strategy to apply on freshly created instances of TransformerFactory.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
uriResolver(Object uriResolver)
To use a custom javax.xml.transform.URIResolver.default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder
uriResolver(String uriResolver)
To use a custom javax.xml.transform.URIResolver.
-
-
-
Method Detail
-
basic
default XsltEndpointBuilderFactory.XsltEndpointBuilder basic()
-
entityResolver
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder entityResolver(Object entityResolver)
To use a custom org.xml.sax.EntityResolver with javax.xml.transform.sax.SAXSource. The option is a:org.xml.sax.EntityResolver
type. Group: advanced
-
entityResolver
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder entityResolver(String entityResolver)
To use a custom org.xml.sax.EntityResolver with javax.xml.transform.sax.SAXSource. The option will be converted to aorg.xml.sax.EntityResolver
type. Group: advanced
-
errorListener
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder errorListener(Object errorListener)
Allows to configure to use a custom javax.xml.transform.ErrorListener. Beware when doing this then the default error listener which captures any errors or fatal errors and store information on the Exchange as properties is not in use. So only use this option for special use-cases. The option is a:javax.xml.transform.ErrorListener
type. Group: advanced
-
errorListener
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder errorListener(String errorListener)
Allows to configure to use a custom javax.xml.transform.ErrorListener. Beware when doing this then the default error listener which captures any errors or fatal errors and store information on the Exchange as properties is not in use. So only use this option for special use-cases. The option will be converted to ajavax.xml.transform.ErrorListener
type. Group: advanced
-
resultHandlerFactory
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder resultHandlerFactory(Object resultHandlerFactory)
Allows you to use a custom org.apache.camel.builder.xml.ResultHandlerFactory which is capable of using custom org.apache.camel.builder.xml.ResultHandler types. The option is a:org.apache.camel.component.xslt.ResultHandlerFactory
type. Group: advanced
-
resultHandlerFactory
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder resultHandlerFactory(String resultHandlerFactory)
Allows you to use a custom org.apache.camel.builder.xml.ResultHandlerFactory which is capable of using custom org.apache.camel.builder.xml.ResultHandler types. The option will be converted to aorg.apache.camel.component.xslt.ResultHandlerFactory
type. Group: advanced
-
synchronous
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a:boolean
type. Default: false Group: advanced
-
synchronous
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option will be converted to aboolean
type. Default: false Group: advanced
-
transformerFactory
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder transformerFactory(Object transformerFactory)
To use a custom XSLT transformer factory. The option is a:javax.xml.transform.TransformerFactory
type. Group: advanced
-
transformerFactory
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder transformerFactory(String transformerFactory)
To use a custom XSLT transformer factory. The option will be converted to ajavax.xml.transform.TransformerFactory
type. Group: advanced
-
transformerFactoryClass
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder transformerFactoryClass(String transformerFactoryClass)
To use a custom XSLT transformer factory, specified as a FQN class name. The option is a:java.lang.String
type. Group: advanced
-
transformerFactoryConfigurationStrategy
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder transformerFactoryConfigurationStrategy(Object transformerFactoryConfigurationStrategy)
A configuration strategy to apply on freshly created instances of TransformerFactory. The option is a:org.apache.camel.component.xslt.TransformerFactoryConfigurationStrategy
type. Group: advanced
-
transformerFactoryConfigurationStrategy
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder transformerFactoryConfigurationStrategy(String transformerFactoryConfigurationStrategy)
A configuration strategy to apply on freshly created instances of TransformerFactory. The option will be converted to aorg.apache.camel.component.xslt.TransformerFactoryConfigurationStrategy
type. Group: advanced
-
uriResolver
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder uriResolver(Object uriResolver)
To use a custom javax.xml.transform.URIResolver. The option is a:javax.xml.transform.URIResolver
type. Group: advanced
-
uriResolver
default XsltEndpointBuilderFactory.AdvancedXsltEndpointBuilder uriResolver(String uriResolver)
To use a custom javax.xml.transform.URIResolver. The option will be converted to ajavax.xml.transform.URIResolver
type. Group: advanced
-
-