Interface CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder

  • All Superinterfaces:
    org.apache.camel.builder.EndpointConsumerBuilder, org.apache.camel.EndpointConsumerResolver
    All Known Subinterfaces:
    CxfEndpointBuilderFactory.CxfEndpointBuilder
    Enclosing interface:
    CxfEndpointBuilderFactory

    public static interface CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
    extends org.apache.camel.builder.EndpointConsumerBuilder
    Builder for endpoint consumers for the CXF component.
    • Method Detail

      • wrappedStyle

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder wrappedStyle​(Boolean wrappedStyle)
        The WSDL style that describes how parameters are represented in the SOAP body. If the value is false, CXF will chose the document-literal unwrapped style, If the value is true, CXF will chose the document-literal wrapped style. The option is a: java.lang.Boolean type. Group: common
      • wrappedStyle

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder wrappedStyle​(String wrappedStyle)
        The WSDL style that describes how parameters are represented in the SOAP body. If the value is false, CXF will chose the document-literal unwrapped style, If the value is true, CXF will chose the document-literal wrapped style. The option will be converted to a java.lang.Boolean type. Group: common
      • bridgeErrorHandler

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder bridgeErrorHandler​(boolean bridgeErrorHandler)
        Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: boolean type. Default: false Group: consumer
      • bridgeErrorHandler

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder bridgeErrorHandler​(String bridgeErrorHandler)
        Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions occurred while the consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option will be converted to a boolean type. Default: false Group: consumer
      • loggingFeatureEnabled

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder loggingFeatureEnabled​(boolean loggingFeatureEnabled)
        This option enables CXF Logging Feature which writes inbound and outbound SOAP messages to log. The option is a: boolean type. Default: false Group: logging
      • loggingFeatureEnabled

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder loggingFeatureEnabled​(String loggingFeatureEnabled)
        This option enables CXF Logging Feature which writes inbound and outbound SOAP messages to log. The option will be converted to a boolean type. Default: false Group: logging
      • loggingSizeLimit

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder loggingSizeLimit​(int loggingSizeLimit)
        To limit the total size of number of bytes the logger will output when logging feature has been enabled and -1 for no limit. The option is a: int type. Default: 49152 Group: logging
      • loggingSizeLimit

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder loggingSizeLimit​(String loggingSizeLimit)
        To limit the total size of number of bytes the logger will output when logging feature has been enabled and -1 for no limit. The option will be converted to a int type. Default: 49152 Group: logging
      • skipFaultLogging

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder skipFaultLogging​(boolean skipFaultLogging)
        This option controls whether the PhaseInterceptorChain skips logging the Fault that it catches. The option is a: boolean type. Default: false Group: logging
      • skipFaultLogging

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder skipFaultLogging​(String skipFaultLogging)
        This option controls whether the PhaseInterceptorChain skips logging the Fault that it catches. The option will be converted to a boolean type. Default: false Group: logging
      • portName

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder portName​(String portName)
        The endpoint name this service is implementing, it maps to the wsdl:portname. In the format of ns:PORT_NAME where ns is a namespace prefix valid at this scope. The option is a: java.lang.String type. Group: service
      • publishedEndpointUrl

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder publishedEndpointUrl​(String publishedEndpointUrl)
        This option can override the endpointUrl that published from the WSDL which can be accessed with service address url plus wsd. The option is a: java.lang.String type. Group: service
      • serviceClass

        default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder serviceClass​(String serviceClass)
        The class name of the SEI (Service Endpoint Interface) class which could have JSR181 annotation or not. The option will be converted to a java.lang.Class<java.lang.Object> type. Group: service