Interface RestEndpointBuilderFactory.RestEndpointProducerBuilder

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

    public static interface RestEndpointBuilderFactory.RestEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the REST component.
    • Method Detail

      • bindingMode

        default RestEndpointBuilderFactory.RestEndpointProducerBuilder bindingMode​(String bindingMode)
        Configures the binding mode for the producer. If set to anything other than 'off' the producer will try to convert the body of the incoming message from inType to the json or xml, and the response from json or xml to outType. The option will be converted to a org.apache.camel.spi.RestConfiguration$RestBindingMode type. Group: producer
      • lazyStartProducer

        default RestEndpointBuilderFactory.RestEndpointProducerBuilder 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: boolean type. Default: false Group: producer
      • lazyStartProducer

        default RestEndpointBuilderFactory.RestEndpointProducerBuilder 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 boolean type. Default: false Group: producer
      • producerComponentName

        default RestEndpointBuilderFactory.RestEndpointProducerBuilder producerComponentName​(String producerComponentName)
        The Camel Rest component to use for (producer) the REST transport, such as http, undertow. If no component has been explicit configured, then Camel will lookup if there is a Camel component that integrates with the Rest DSL, or if a org.apache.camel.spi.RestProducerFactory is registered in the registry. If either one is found, then that is being used. The option is a: java.lang.String type. Group: producer
      • queryParameters

        default RestEndpointBuilderFactory.RestEndpointProducerBuilder queryParameters​(String queryParameters)
        Query parameters for the HTTP service to call. The query parameters can contain multiple parameters separated by ampersand such such as foo=123&bar=456. The option is a: java.lang.String type. Group: producer