Interface CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder

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

    public static interface CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Advanced builder for endpoint producers for the CXF-RS component.
    • Method Detail

      • httpClientAPI

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder httpClientAPI​(boolean httpClientAPI)
        If it is true, the CxfRsProducer will use the HttpClientAPI to invoke the service. If it is false, the CxfRsProducer will use the ProxyClientAPI to invoke the service. The option is a: boolean type. Default: true Group: producer (advanced)
      • httpClientAPI

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder httpClientAPI​(String httpClientAPI)
        If it is true, the CxfRsProducer will use the HttpClientAPI to invoke the service. If it is false, the CxfRsProducer will use the ProxyClientAPI to invoke the service. The option will be converted to a boolean type. Default: true Group: producer (advanced)
      • ignoreDeleteMethodMessageBody

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder ignoreDeleteMethodMessageBody​(boolean ignoreDeleteMethodMessageBody)
        This option is used to tell CxfRsProducer to ignore the message body of the DELETE method when using HTTP API. The option is a: boolean type. Default: false Group: producer (advanced)
      • ignoreDeleteMethodMessageBody

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder ignoreDeleteMethodMessageBody​(String ignoreDeleteMethodMessageBody)
        This option is used to tell CxfRsProducer to ignore the message body of the DELETE method when using HTTP API. The option will be converted to a boolean type. Default: false Group: producer (advanced)
      • maxClientCacheSize

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder maxClientCacheSize​(int maxClientCacheSize)
        This option allows you to configure the maximum size of the cache. The implementation caches CXF clients or ClientFactoryBean in CxfProvider and CxfRsProvider. The option is a: int type. Default: 10 Group: producer (advanced)
      • maxClientCacheSize

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder maxClientCacheSize​(String maxClientCacheSize)
        This option allows you to configure the maximum size of the cache. The implementation caches CXF clients or ClientFactoryBean in CxfProvider and CxfRsProvider. The option will be converted to a int type. Default: 10 Group: producer (advanced)
      • basicPropertyBinding

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder basicPropertyBinding​(boolean basicPropertyBinding)
        Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. The option is a: boolean type. Default: false Group: advanced
      • basicPropertyBinding

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder basicPropertyBinding​(String basicPropertyBinding)
        Whether the endpoint should use basic property binding (Camel 2.x) or the newer property binding with additional capabilities. The option will be converted to a boolean type. Default: false Group: advanced
      • continuationTimeout

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder continuationTimeout​(long continuationTimeout)
        This option is used to set the CXF continuation timeout which could be used in CxfConsumer by default when the CXF server is using Jetty or Servlet transport. The option is a: long type. Default: 30000 Group: advanced
      • continuationTimeout

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder continuationTimeout​(String continuationTimeout)
        This option is used to set the CXF continuation timeout which could be used in CxfConsumer by default when the CXF server is using Jetty or Servlet transport. The option will be converted to a long type. Default: 30000 Group: advanced
      • cxfRsConfigurer

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder cxfRsConfigurer​(Object cxfRsConfigurer)
        This option could apply the implementation of org.apache.camel.component.cxf.jaxrs.CxfRsEndpointConfigurer which supports to configure the CXF endpoint in programmatic way. User can configure the CXF server and client by implementing configure{Server/Client} method of CxfEndpointConfigurer. The option is a: org.apache.camel.component.cxf.jaxrs.CxfRsConfigurer type. Group: advanced
      • cxfRsConfigurer

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder cxfRsConfigurer​(String cxfRsConfigurer)
        This option could apply the implementation of org.apache.camel.component.cxf.jaxrs.CxfRsEndpointConfigurer which supports to configure the CXF endpoint in programmatic way. User can configure the CXF server and client by implementing configure{Server/Client} method of CxfEndpointConfigurer. The option will be converted to a org.apache.camel.component.cxf.jaxrs.CxfRsConfigurer type. Group: advanced
      • headerFilterStrategy

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder headerFilterStrategy​(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy)
        To use a custom HeaderFilterStrategy to filter header to and from Camel message. The option is a: org.apache.camel.spi.HeaderFilterStrategy type. Group: advanced
      • performInvocation

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder performInvocation​(boolean performInvocation)
        When the option is true, Camel will perform the invocation of the resource class instance and put the response object into the exchange for further processing. The option is a: boolean type. Default: false Group: advanced
      • performInvocation

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder performInvocation​(String performInvocation)
        When the option is true, Camel will perform the invocation of the resource class instance and put the response object into the exchange for further processing. The option will be converted to a boolean type. Default: false Group: advanced
      • propagateContexts

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder propagateContexts​(boolean propagateContexts)
        When the option is true, JAXRS UriInfo, HttpHeaders, Request and SecurityContext contexts will be available to custom CXFRS processors as typed Camel exchange properties. These contexts can be used to analyze the current requests using JAX-RS API. The option is a: boolean type. Default: false Group: advanced
      • propagateContexts

        default CxfRsEndpointBuilderFactory.AdvancedCxfRsEndpointProducerBuilder propagateContexts​(String propagateContexts)
        When the option is true, JAXRS UriInfo, HttpHeaders, Request and SecurityContext contexts will be available to custom CXFRS processors as typed Camel exchange properties. These contexts can be used to analyze the current requests using JAX-RS API. The option will be converted to a boolean type. Default: false Group: advanced