Interface XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- XmlVerifierEndpointBuilderFactory
public static interface XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the XML Security Verify component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default XmlVerifierEndpointBuilderFactory.XmlVerifierEndpointBuilder
basic()
default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder
uriDereferencer(Object uriDereferencer)
If you want to restrict the remote access via reference URIs, you can set an own dereferencer.default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder
uriDereferencer(String uriDereferencer)
If you want to restrict the remote access via reference URIs, you can set an own dereferencer.
-
-
-
Method Detail
-
basic
default XmlVerifierEndpointBuilderFactory.XmlVerifierEndpointBuilder basic()
-
synchronous
default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder 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 XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder 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
-
uriDereferencer
default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder uriDereferencer(Object uriDereferencer)
If you want to restrict the remote access via reference URIs, you can set an own dereferencer. Optional parameter. If not set the provider default dereferencer is used which can resolve URI fragments, HTTP, file and XPpointer URIs. Attention: The implementation is provider dependent!. The option is a:javax.xml.crypto.URIDereferencer
type. Group: advanced
-
uriDereferencer
default XmlVerifierEndpointBuilderFactory.AdvancedXmlVerifierEndpointBuilder uriDereferencer(String uriDereferencer)
If you want to restrict the remote access via reference URIs, you can set an own dereferencer. Optional parameter. If not set the provider default dereferencer is used which can resolve URI fragments, HTTP, file and XPpointer URIs. Attention: The implementation is provider dependent!. The option will be converted to ajavax.xml.crypto.URIDereferencer
type. Group: advanced
-
-