Interface XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- Enclosing interface:
- XmlSignerEndpointBuilderFactory
public static interface XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Advanced builder for endpoint for the XML Security Sign component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default XmlSignerEndpointBuilderFactory.XmlSignerEndpointBuilder
basic()
default XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).default XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder
uriDereferencer(Object uriDereferencer)
If you want to restrict the remote access via reference URIs, you can set an own dereferencer.default XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder
uriDereferencer(String uriDereferencer)
If you want to restrict the remote access via reference URIs, you can set an own dereferencer.
-
-
-
Method Detail
-
basic
default XmlSignerEndpointBuilderFactory.XmlSignerEndpointBuilder basic()
-
synchronous
default XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder 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 XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder 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 XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder 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 XmlSignerEndpointBuilderFactory.AdvancedXmlSignerEndpointBuilder 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
-
-