Interface CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder

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

    public static interface CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder
    extends org.apache.camel.builder.EndpointProducerBuilder
    Advanced builder for endpoint producers for the CXF component.
    • Method Detail

      • allowStreaming

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder allowStreaming​(Boolean allowStreaming)
        This option controls whether the CXF component, when running in PAYLOAD mode, will DOM parse the incoming messages into DOM Elements or keep the payload as a javax.xml.transform.Source object that would allow streaming in some cases. The option is a: java.lang.Boolean type. Group: advanced
      • allowStreaming

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder allowStreaming​(String allowStreaming)
        This option controls whether the CXF component, when running in PAYLOAD mode, will DOM parse the incoming messages into DOM Elements or keep the payload as a javax.xml.transform.Source object that would allow streaming in some cases. The option will be converted to a java.lang.Boolean type. Group: advanced
      • continuationTimeout

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder 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 CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder 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
      • cxfConfigurer

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder cxfConfigurer​(Object cxfConfigurer)
        This option could apply the implementation of org.apache.camel.component.cxf.CxfEndpointConfigurer which supports to configure the CXF endpoint in programmatic way. User can configure the CXF server and client by implementing configure{ServerClient} method of CxfEndpointConfigurer. The option is a: org.apache.camel.component.cxf.CxfConfigurer type. Group: advanced
      • cxfConfigurer

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder cxfConfigurer​(String cxfConfigurer)
        This option could apply the implementation of org.apache.camel.component.cxf.CxfEndpointConfigurer which supports to configure the CXF endpoint in programmatic way. User can configure the CXF server and client by implementing configure{ServerClient} method of CxfEndpointConfigurer. The option will be converted to a org.apache.camel.component.cxf.CxfConfigurer type. Group: advanced
      • headerFilterStrategy

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder 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
      • mergeProtocolHeaders

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder mergeProtocolHeaders​(boolean mergeProtocolHeaders)
        Whether to merge protocol headers. If enabled then propagating headers between Camel and CXF becomes more consistent and similar. For more details see CAMEL-6393. The option is a: boolean type. Default: false Group: advanced
      • mergeProtocolHeaders

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder mergeProtocolHeaders​(String mergeProtocolHeaders)
        Whether to merge protocol headers. If enabled then propagating headers between Camel and CXF becomes more consistent and similar. For more details see CAMEL-6393. The option will be converted to a boolean type. Default: false Group: advanced
      • properties

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder properties​(String key,
                                                                                        Object value)
        To set additional CXF options using the key/value pairs from the Map. For example to turn on stacktraces in SOAP faults, properties.faultStackTraceEnabled=true. The option is a: java.util.Map<java.lang.String, java.lang.Object> type. The option is multivalued, and you can use the properties(String, Object) method to add a value (call the method multiple times to set more values). Group: advanced
      • properties

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder properties​(Map values)
        To set additional CXF options using the key/value pairs from the Map. For example to turn on stacktraces in SOAP faults, properties.faultStackTraceEnabled=true. The option is a: java.util.Map<java.lang.String, java.lang.Object> type. The option is multivalued, and you can use the properties(String, Object) method to add a value (call the method multiple times to set more values). Group: advanced
      • synchronous

        default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder synchronous​(boolean synchronous)
        Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported). The option is a: boolean type. Default: false Group: advanced