Interface ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder

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

    public static interface ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Builder for endpoint producers for the Resteasy component.
    • Method Detail

      • disableStreamCache

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder disableStreamCache​(boolean disableStreamCache)
        Determines whether or not the raw input stream from Servlet is cached or not (Camel will read the stream into a in memory/overflow to file, Stream caching) cache. By default Camel will cache the Servlet input stream to support reading it multiple times to ensure it Camel can retrieve all data from the stream. However you can set this option to true when you for example need to access the raw stream, such as streaming it directly to a file or other persistent store. DefaultHttpBinding will copy the request input stream into a stream cache and put it into message body if this option is false to support reading the stream multiple times. If you use Servlet to bridge/proxy an endpoint then consider enabling this option to improve performance, in case you do not need to read the message payload multiple times. The http producer will by default cache the response body stream. If setting this option to true, then the producers will not cache the response body stream but use the response stream as-is as the message body. The option is a: <code>boolean</code> type. Default: false Group: common
        Parameters:
        disableStreamCache - the value to set
        Returns:
        the dsl builder
      • disableStreamCache

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder disableStreamCache​(String disableStreamCache)
        Determines whether or not the raw input stream from Servlet is cached or not (Camel will read the stream into a in memory/overflow to file, Stream caching) cache. By default Camel will cache the Servlet input stream to support reading it multiple times to ensure it Camel can retrieve all data from the stream. However you can set this option to true when you for example need to access the raw stream, such as streaming it directly to a file or other persistent store. DefaultHttpBinding will copy the request input stream into a stream cache and put it into message body if this option is false to support reading the stream multiple times. If you use Servlet to bridge/proxy an endpoint then consider enabling this option to improve performance, in case you do not need to read the message payload multiple times. The http producer will by default cache the response body stream. If setting this option to true, then the producers will not cache the response body stream but use the response stream as-is as the message body. The option will be converted to a <code>boolean</code> type. Default: false Group: common
        Parameters:
        disableStreamCache - the value to set
        Returns:
        the dsl builder
      • bridgeEndpoint

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder bridgeEndpoint​(boolean bridgeEndpoint)
        If the option is true, HttpProducer will ignore the Exchange.HTTP_URI header, and use the endpoint's URI for request. You may also set the option throwExceptionOnFailure to be false to let the HttpProducer send all the fault response back. The option is a: <code>boolean</code> type. Default: false Group: producer
        Parameters:
        bridgeEndpoint - the value to set
        Returns:
        the dsl builder
      • bridgeEndpoint

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder bridgeEndpoint​(String bridgeEndpoint)
        If the option is true, HttpProducer will ignore the Exchange.HTTP_URI header, and use the endpoint's URI for request. You may also set the option throwExceptionOnFailure to be false to let the HttpProducer send all the fault response back. The option will be converted to a <code>boolean</code> type. Default: false Group: producer
        Parameters:
        bridgeEndpoint - the value to set
        Returns:
        the dsl builder
      • connectionClose

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder connectionClose​(boolean connectionClose)
        Specifies whether a Connection Close header must be added to HTTP Request. By default connectionClose is false. The option is a: <code>boolean</code> type. Default: false Group: producer
        Parameters:
        connectionClose - the value to set
        Returns:
        the dsl builder
      • connectionClose

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder connectionClose​(String connectionClose)
        Specifies whether a Connection Close header must be added to HTTP Request. By default connectionClose is false. The option will be converted to a <code>boolean</code> type. Default: false Group: producer
        Parameters:
        connectionClose - the value to set
        Returns:
        the dsl builder
      • followRedirects

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder followRedirects​(boolean followRedirects)
        Whether to the HTTP request should follow redirects. By default the HTTP request does not follow redirects. The option is a: <code>boolean</code> type. Default: false Group: producer
        Parameters:
        followRedirects - the value to set
        Returns:
        the dsl builder
      • followRedirects

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder followRedirects​(String followRedirects)
        Whether to the HTTP request should follow redirects. By default the HTTP request does not follow redirects. The option will be converted to a <code>boolean</code> type. Default: false Group: producer
        Parameters:
        followRedirects - the value to set
        Returns:
        the dsl builder
      • httpMethod

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder httpMethod​(org.apache.camel.http.common.HttpMethods httpMethod)
        Configure the HTTP method to use. The HttpMethod header cannot override this option if set. The option is a: <code>org.apache.camel.http.common.HttpMethods</code> type. Group: producer
        Parameters:
        httpMethod - the value to set
        Returns:
        the dsl builder
      • httpMethod

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder httpMethod​(String httpMethod)
        Configure the HTTP method to use. The HttpMethod header cannot override this option if set. The option will be converted to a <code>org.apache.camel.http.common.HttpMethods</code> type. Group: producer
        Parameters:
        httpMethod - the value to set
        Returns:
        the dsl builder
      • throwExceptionOnFailure

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder 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>boolean</code> type. Default: true Group: producer
        Parameters:
        throwExceptionOnFailure - the value to set
        Returns:
        the dsl builder
      • throwExceptionOnFailure

        default ResteasyEndpointBuilderFactory.ResteasyEndpointProducerBuilder 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>boolean</code> type. Default: true Group: producer
        Parameters:
        throwExceptionOnFailure - the value to set
        Returns:
        the dsl builder