Interface DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
    Enclosing interface:
    DigitalSignatureEndpointBuilderFactory

    public static interface DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Advanced builder for endpoint for the Crypto (JCE) component.
    • Method Detail

      • lazyStartProducer

        default DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder lazyStartProducer​(boolean lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a: <code>boolean</code> type. Default: false Group: producer (advanced)
        Parameters:
        lazyStartProducer - the value to set
        Returns:
        the dsl builder
      • lazyStartProducer

        default DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder lazyStartProducer​(String lazyStartProducer)
        Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to a <code>boolean</code> type. Default: false Group: producer (advanced)
        Parameters:
        lazyStartProducer - the value to set
        Returns:
        the dsl builder
      • clearHeaders

        default DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder clearHeaders​(boolean clearHeaders)
        Determines if the Signature specific headers be cleared after signing and verification. Defaults to true, and should only be made otherwise at your extreme peril as vital private information such as Keys and passwords may escape if unset. The option is a: <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        clearHeaders - the value to set
        Returns:
        the dsl builder
      • clearHeaders

        default DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder clearHeaders​(String clearHeaders)
        Determines if the Signature specific headers be cleared after signing and verification. Defaults to true, and should only be made otherwise at your extreme peril as vital private information such as Keys and passwords may escape if unset. The option will be converted to a <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        clearHeaders - the value to set
        Returns:
        the dsl builder
      • keyStoreParameters

        default DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder keyStoreParameters​(org.apache.camel.support.jsse.KeyStoreParameters keyStoreParameters)
        Sets the KeyStore that can contain keys and Certficates for use in signing and verifying exchanges based on the given KeyStoreParameters. A KeyStore is typically used with an alias, either one supplied in the Route definition or dynamically via the message header CamelSignatureKeyStoreAlias. If no alias is supplied and there is only a single entry in the Keystore, then this single entry will be used. The option is a: <code>org.apache.camel.support.jsse.KeyStoreParameters</code> type. Group: advanced
        Parameters:
        keyStoreParameters - the value to set
        Returns:
        the dsl builder
      • keyStoreParameters

        default DigitalSignatureEndpointBuilderFactory.AdvancedDigitalSignatureEndpointBuilder keyStoreParameters​(String keyStoreParameters)
        Sets the KeyStore that can contain keys and Certficates for use in signing and verifying exchanges based on the given KeyStoreParameters. A KeyStore is typically used with an alias, either one supplied in the Route definition or dynamically via the message header CamelSignatureKeyStoreAlias. If no alias is supplied and there is only a single entry in the Keystore, then this single entry will be used. The option will be converted to a <code>org.apache.camel.support.jsse.KeyStoreParameters</code> type. Group: advanced
        Parameters:
        keyStoreParameters - the value to set
        Returns:
        the dsl builder