Interface AhcComponentBuilderFactory.AhcComponentBuilder

    • Method Detail

      • lazyStartProducer

        default AhcComponentBuilderFactory.AhcComponentBuilder 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
        Parameters:
        lazyStartProducer - the value to set
        Returns:
        the dsl builder
      • allowJavaSerializedObject

        default AhcComponentBuilderFactory.AhcComponentBuilder allowJavaSerializedObject​(boolean allowJavaSerializedObject)
        Whether to allow java serialization when a request uses context-type=application/x-java-serialized-object This is by default turned off. If you enable this then be aware that Java will deserialize the incoming data from the request to Java and that can be a potential security risk. The option is a: <code>boolean</code> type. Default: false Group: advanced
        Parameters:
        allowJavaSerializedObject - the value to set
        Returns:
        the dsl builder
      • autowiredEnabled

        default AhcComponentBuilderFactory.AhcComponentBuilder autowiredEnabled​(boolean autowiredEnabled)
        Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc. The option is a: <code>boolean</code> type. Default: true Group: advanced
        Parameters:
        autowiredEnabled - the value to set
        Returns:
        the dsl builder
      • binding

        default AhcComponentBuilderFactory.AhcComponentBuilder binding​(org.apache.camel.component.ahc.AhcBinding binding)
        To use a custom AhcBinding which allows to control how to bind between AHC and Camel. The option is a: <code>org.apache.camel.component.ahc.AhcBinding</code> type. Group: advanced
        Parameters:
        binding - the value to set
        Returns:
        the dsl builder
      • client

        default AhcComponentBuilderFactory.AhcComponentBuilder client​(org.asynchttpclient.AsyncHttpClient client)
        To use a custom AsyncHttpClient. The option is a: <code>org.asynchttpclient.AsyncHttpClient</code> type. Group: advanced
        Parameters:
        client - the value to set
        Returns:
        the dsl builder
      • clientConfig

        default AhcComponentBuilderFactory.AhcComponentBuilder clientConfig​(org.asynchttpclient.AsyncHttpClientConfig clientConfig)
        To configure the AsyncHttpClient to use a custom com.ning.http.client.AsyncHttpClientConfig instance. The option is a: <code>org.asynchttpclient.AsyncHttpClientConfig</code> type. Group: advanced
        Parameters:
        clientConfig - the value to set
        Returns:
        the dsl builder
      • headerFilterStrategy

        default AhcComponentBuilderFactory.AhcComponentBuilder headerFilterStrategy​(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
        To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message. The option is a: <code>org.apache.camel.spi.HeaderFilterStrategy</code> type. Group: filter
        Parameters:
        headerFilterStrategy - the value to set
        Returns:
        the dsl builder
      • sslContextParameters

        default AhcComponentBuilderFactory.AhcComponentBuilder sslContextParameters​(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
        Reference to a org.apache.camel.support.jsse.SSLContextParameters in the Registry. Note that configuring this option will override any SSL/TLS configuration options provided through the clientConfig option at the endpoint or component level. The option is a: <code>org.apache.camel.support.jsse.SSLContextParameters</code> type. Group: security
        Parameters:
        sslContextParameters - the value to set
        Returns:
        the dsl builder
      • useGlobalSslContextParameters

        default AhcComponentBuilderFactory.AhcComponentBuilder useGlobalSslContextParameters​(boolean useGlobalSslContextParameters)
        Enable usage of global SSL context parameters. The option is a: <code>boolean</code> type. Default: false Group: security
        Parameters:
        useGlobalSslContextParameters - the value to set
        Returns:
        the dsl builder