Interface SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- SchematronEndpointBuilderFactory
public static interface SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the Schematron component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SchematronEndpointBuilderFactory.SchematronEndpointBuilder
basic()
default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder
uriResolver(Object uriResolver)
Set the URIResolver to be used for resolving schematron includes in the rules file.default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder
uriResolver(String uriResolver)
Set the URIResolver to be used for resolving schematron includes in the rules file.
-
-
-
Method Detail
-
basic
default SchematronEndpointBuilderFactory.SchematronEndpointBuilder basic()
-
synchronous
default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder 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 SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder 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
-
uriResolver
default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder uriResolver(Object uriResolver)
Set the URIResolver to be used for resolving schematron includes in the rules file. The option is a:javax.xml.transform.URIResolver
type. Group: advanced
-
uriResolver
default SchematronEndpointBuilderFactory.AdvancedSchematronEndpointBuilder uriResolver(String uriResolver)
Set the URIResolver to be used for resolving schematron includes in the rules file. The option will be converted to ajavax.xml.transform.URIResolver
type. Group: advanced
-
-