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 Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default CxfEndpointBuilderFactory.AdvancedCxfEndpointConsumerBuilder
advanced()
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
bindingId(String bindingId)
The bindingId for the service model to use.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.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.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
dataFormat(String dataFormat)
The data type messages supported by the CXF endpoint.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
dataFormat(CxfEndpointBuilderFactory.DataFormat dataFormat)
The data type messages supported by the CXF endpoint.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
loggingFeatureEnabled(boolean loggingFeatureEnabled)
This option enables CXF Logging Feature which writes inbound and outbound SOAP messages to log.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
loggingFeatureEnabled(String loggingFeatureEnabled)
This option enables CXF Logging Feature which writes inbound and outbound SOAP messages to log.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.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.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
password(String password)
This option is used to set the basic authentication information of password for the CXF client.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
portName(String portName)
The endpoint name this service is implementing, it maps to the wsdl:portname.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.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
serviceClass(Class<Object> serviceClass)
The class name of the SEI (Service Endpoint Interface) class which could have JSR181 annotation or not.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
serviceClass(String serviceClass)
The class name of the SEI (Service Endpoint Interface) class which could have JSR181 annotation or not.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
serviceName(String serviceName)
The service name this service is implementing, it maps to the wsdl:servicename.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
skipFaultLogging(boolean skipFaultLogging)
This option controls whether the PhaseInterceptorChain skips logging the Fault that it catches.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
skipFaultLogging(String skipFaultLogging)
This option controls whether the PhaseInterceptorChain skips logging the Fault that it catches.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
username(String username)
This option is used to set the basic authentication information of username for the CXF client.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
wrappedStyle(Boolean wrappedStyle)
The WSDL style that describes how parameters are represented in the SOAP body.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
wrappedStyle(String wrappedStyle)
The WSDL style that describes how parameters are represented in the SOAP body.default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder
wsdlURL(String wsdlURL)
The location of the WSDL.
-
-
-
Method Detail
-
advanced
default CxfEndpointBuilderFactory.AdvancedCxfEndpointConsumerBuilder advanced()
-
dataFormat
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder dataFormat(CxfEndpointBuilderFactory.DataFormat dataFormat)
The data type messages supported by the CXF endpoint. The option is a:org.apache.camel.component.cxf.DataFormat
type. Default: POJO Group: common
-
dataFormat
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder dataFormat(String dataFormat)
The data type messages supported by the CXF endpoint. The option will be converted to aorg.apache.camel.component.cxf.DataFormat
type. Default: POJO Group: common
-
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 ajava.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 aboolean
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 aboolean
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 aint
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 aboolean
type. Default: false Group: logging
-
password
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder password(String password)
This option is used to set the basic authentication information of password for the CXF client. The option is a:java.lang.String
type. Group: security
-
username
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder username(String username)
This option is used to set the basic authentication information of username for the CXF client. The option is a:java.lang.String
type. Group: security
-
bindingId
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder bindingId(String bindingId)
The bindingId for the service model to use. The option is a:java.lang.String
type. Group: service
-
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(Class<Object> serviceClass)
The class name of the SEI (Service Endpoint Interface) class which could have JSR181 annotation or not. The option is a:java.lang.Class<java.lang.Object>
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 ajava.lang.Class<java.lang.Object>
type. Group: service
-
serviceName
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder serviceName(String serviceName)
The service name this service is implementing, it maps to the wsdl:servicename. The option is a:java.lang.String
type. Group: service
-
wsdlURL
default CxfEndpointBuilderFactory.CxfEndpointConsumerBuilder wsdlURL(String wsdlURL)
The location of the WSDL. Can be on the classpath, file system, or be hosted remotely. The option is a:java.lang.String
type. Group: service
-
-