Interface UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointProducerBuilder, org.apache.camel.EndpointProducerResolver
    All Known Subinterfaces:
    UndertowEndpointBuilderFactory.UndertowEndpointBuilder
    Enclosing interface:
    UndertowEndpointBuilderFactory

    public static interface UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the Undertow component.
    • Method Detail

      • useStreaming

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder useStreaming​(boolean useStreaming)
        For HTTP endpoint: if true, text and binary messages will be wrapped as java.io.InputStream before they are passed to an Exchange; otherwise they will be passed as byte. For WebSocket endpoint: if true, text and binary messages will be wrapped as java.io.Reader and java.io.InputStream respectively before they are passed to an Exchange; otherwise they will be passed as String and byte respectively. The option is a: <code>boolean</code> type. Default: false Group: common
        Parameters:
        useStreaming - the value to set
        Returns:
        the dsl builder
      • useStreaming

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder useStreaming​(String useStreaming)
        For HTTP endpoint: if true, text and binary messages will be wrapped as java.io.InputStream before they are passed to an Exchange; otherwise they will be passed as byte. For WebSocket endpoint: if true, text and binary messages will be wrapped as java.io.Reader and java.io.InputStream respectively before they are passed to an Exchange; otherwise they will be passed as String and byte respectively. The option will be converted to a <code>boolean</code> type. Default: false Group: common
        Parameters:
        useStreaming - the value to set
        Returns:
        the dsl builder
      • cookieHandler

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder cookieHandler​(Object cookieHandler)
        Configure a cookie handler to maintain a HTTP session. The option is a: <code>org.apache.camel.http.base.cookie.CookieHandler</code> type. Group: producer
        Parameters:
        cookieHandler - the value to set
        Returns:
        the dsl builder
      • cookieHandler

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder cookieHandler​(String cookieHandler)
        Configure a cookie handler to maintain a HTTP session. The option will be converted to a <code>org.apache.camel.http.base.cookie.CookieHandler</code> type. Group: producer
        Parameters:
        cookieHandler - the value to set
        Returns:
        the dsl builder
      • keepAlive

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder keepAlive​(String keepAlive)
        Setting to ensure socket is not closed due to inactivity. The option will be converted to a <code>java.lang.Boolean</code> type. Default: true Group: producer
        Parameters:
        keepAlive - the value to set
        Returns:
        the dsl builder
      • lazyStartProducer

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder 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
      • lazyStartProducer

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder 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
        Parameters:
        lazyStartProducer - the value to set
        Returns:
        the dsl builder
      • options

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder options​(String key,
                                                                                       Object value)
        Sets additional channel options. The options that can be used are defined in org.xnio.Options. To configure from endpoint uri, then prefix each option with option., such as option.close-abort=true&amp;option.send-buffer=8192. The option is a: <code>java.util.Map&lt;java.lang.String, java.lang.Object&gt;</code> type. The option is multivalued, and you can use the options(String, Object) method to add a value (call the method multiple times to set more values). Group: producer
        Parameters:
        key - the option key
        value - the option value
        Returns:
        the dsl builder
      • options

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder options​(Map values)
        Sets additional channel options. The options that can be used are defined in org.xnio.Options. To configure from endpoint uri, then prefix each option with option., such as option.close-abort=true&amp;option.send-buffer=8192. The option is a: <code>java.util.Map&lt;java.lang.String, java.lang.Object&gt;</code> type. The option is multivalued, and you can use the options(String, Object) method to add a value (call the method multiple times to set more values). Group: producer
        Parameters:
        values - the values
        Returns:
        the dsl builder
      • preserveHostHeader

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder preserveHostHeader​(boolean preserveHostHeader)
        If the option is true, UndertowProducer will set the Host header to the value contained in the current exchange Host header, useful in reverse proxy applications where you want the Host header received by the downstream server to reflect the URL called by the upstream client, this allows applications which use the Host header to generate accurate URL's for a proxied service. The option is a: <code>boolean</code> type. Default: true Group: producer
        Parameters:
        preserveHostHeader - the value to set
        Returns:
        the dsl builder
      • preserveHostHeader

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder preserveHostHeader​(String preserveHostHeader)
        If the option is true, UndertowProducer will set the Host header to the value contained in the current exchange Host header, useful in reverse proxy applications where you want the Host header received by the downstream server to reflect the URL called by the upstream client, this allows applications which use the Host header to generate accurate URL's for a proxied service. The option will be converted to a <code>boolean</code> type. Default: true Group: producer
        Parameters:
        preserveHostHeader - the value to set
        Returns:
        the dsl builder
      • reuseAddresses

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder reuseAddresses​(String reuseAddresses)
        Setting to facilitate socket multiplexing. The option will be converted to a <code>java.lang.Boolean</code> type. Default: true Group: producer
        Parameters:
        reuseAddresses - the value to set
        Returns:
        the dsl builder
      • throwExceptionOnFailure

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder throwExceptionOnFailure​(Boolean throwExceptionOnFailure)
        Option to disable throwing the HttpOperationFailedException in case of failed responses from the remote server. This allows you to get all responses regardless of the HTTP status code. The option is a: <code>java.lang.Boolean</code> type. Default: true Group: producer
        Parameters:
        throwExceptionOnFailure - the value to set
        Returns:
        the dsl builder
      • throwExceptionOnFailure

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder throwExceptionOnFailure​(String throwExceptionOnFailure)
        Option to disable throwing the HttpOperationFailedException in case of failed responses from the remote server. This allows you to get all responses regardless of the HTTP status code. The option will be converted to a <code>java.lang.Boolean</code> type. Default: true Group: producer
        Parameters:
        throwExceptionOnFailure - the value to set
        Returns:
        the dsl builder
      • allowedRoles

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder allowedRoles​(String allowedRoles)
        Configuration used by UndertowSecurityProvider. Comma separated list of allowed roles. The option is a: <code>java.lang.String</code> type. Group: security
        Parameters:
        allowedRoles - the value to set
        Returns:
        the dsl builder
      • securityConfiguration

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder securityConfiguration​(Object securityConfiguration)
        OConfiguration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides whether accepts configuration. The option is a: <code>java.lang.Object</code> type. Group: security
        Parameters:
        securityConfiguration - the value to set
        Returns:
        the dsl builder
      • securityConfiguration

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder securityConfiguration​(String securityConfiguration)
        OConfiguration used by UndertowSecurityProvider. Security configuration object for use from UndertowSecurityProvider. Configuration is UndertowSecurityProvider specific. Each provider decides whether accepts configuration. The option will be converted to a <code>java.lang.Object</code> type. Group: security
        Parameters:
        securityConfiguration - the value to set
        Returns:
        the dsl builder
      • securityProvider

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder securityProvider​(Object securityProvider)
        Security provider allows plug in the provider, which will be used to secure requests. SPI approach could be used too (endpoint then finds security provider using SPI). The option is a: <code>org.apache.camel.component.undertow.spi.UndertowSecurityProvider</code> type. Group: security
        Parameters:
        securityProvider - the value to set
        Returns:
        the dsl builder
      • securityProvider

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder securityProvider​(String securityProvider)
        Security provider allows plug in the provider, which will be used to secure requests. SPI approach could be used too (endpoint then finds security provider using SPI). The option will be converted to a <code>org.apache.camel.component.undertow.spi.UndertowSecurityProvider</code> type. Group: security
        Parameters:
        securityProvider - the value to set
        Returns:
        the dsl builder
      • sslContextParameters

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder sslContextParameters​(Object sslContextParameters)
        To configure security using SSLContextParameters. 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
      • sslContextParameters

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder sslContextParameters​(String sslContextParameters)
        To configure security using SSLContextParameters. The option will be converted to a <code>org.apache.camel.support.jsse.SSLContextParameters</code> type. Group: security
        Parameters:
        sslContextParameters - the value to set
        Returns:
        the dsl builder
      • sendTimeout

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder sendTimeout​(Integer sendTimeout)
        Timeout in milliseconds when sending to a websocket channel. The default timeout is 30000 (30 seconds). The option is a: <code>java.lang.Integer</code> type. Default: 30000 Group: websocket
        Parameters:
        sendTimeout - the value to set
        Returns:
        the dsl builder
      • sendTimeout

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder sendTimeout​(String sendTimeout)
        Timeout in milliseconds when sending to a websocket channel. The default timeout is 30000 (30 seconds). The option will be converted to a <code>java.lang.Integer</code> type. Default: 30000 Group: websocket
        Parameters:
        sendTimeout - the value to set
        Returns:
        the dsl builder
      • sendToAll

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder sendToAll​(Boolean sendToAll)
        To send to all websocket subscribers. Can be used to configure on endpoint level, instead of having to use the UndertowConstants.SEND_TO_ALL header on the message. The option is a: <code>java.lang.Boolean</code> type. Group: websocket
        Parameters:
        sendToAll - the value to set
        Returns:
        the dsl builder
      • sendToAll

        default UndertowEndpointBuilderFactory.UndertowEndpointProducerBuilder sendToAll​(String sendToAll)
        To send to all websocket subscribers. Can be used to configure on endpoint level, instead of having to use the UndertowConstants.SEND_TO_ALL header on the message. The option will be converted to a <code>java.lang.Boolean</code> type. Group: websocket
        Parameters:
        sendToAll - the value to set
        Returns:
        the dsl builder