Interface CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointProducerBuilder
,org.apache.camel.EndpointProducerResolver
- All Known Subinterfaces:
CxfEndpointBuilderFactory.CxfEndpointBuilder
- Enclosing interface:
- CxfEndpointBuilderFactory
public static interface CxfEndpointBuilderFactory.CxfEndpointProducerBuilder extends org.apache.camel.builder.EndpointProducerBuilder
Builder for endpoint producers for the CXF component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder
advanced()
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
bindingId(String bindingId)
The bindingId for the service model to use.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
cookieHandler(Object cookieHandler)
Configure a cookie handler to maintain a HTTP session.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
cookieHandler(String cookieHandler)
Configure a cookie handler to maintain a HTTP session.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
dataFormat(String dataFormat)
The data type messages supported by the CXF endpoint.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
dataFormat(CxfEndpointBuilderFactory.DataFormat dataFormat)
The data type messages supported by the CXF endpoint.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
defaultOperationName(String defaultOperationName)
This option will set the default operationName that will be used by the CxfProducer which invokes the remote service.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
defaultOperationNamespace(String defaultOperationNamespace)
This option will set the default operationNamespace that will be used by the CxfProducer which invokes the remote service.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
hostnameVerifier(Object hostnameVerifier)
The hostname verifier to be used.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
hostnameVerifier(String hostnameVerifier)
The hostname verifier to be used.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message).default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message).default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
loggingFeatureEnabled(boolean loggingFeatureEnabled)
This option enables CXF Logging Feature which writes inbound and outbound SOAP messages to log.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
loggingFeatureEnabled(String loggingFeatureEnabled)
This option enables CXF Logging Feature which writes inbound and outbound SOAP messages to log.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
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.CxfEndpointProducerBuilder
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.CxfEndpointProducerBuilder
password(String password)
This option is used to set the basic authentication information of password for the CXF client.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
portName(String portName)
The endpoint name this service is implementing, it maps to the wsdl:portname.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
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.CxfEndpointProducerBuilder
serviceClass(Class<Object> serviceClass)
The class name of the SEI (Service Endpoint Interface) class which could have JSR181 annotation or not.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
serviceClass(String serviceClass)
The class name of the SEI (Service Endpoint Interface) class which could have JSR181 annotation or not.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
serviceName(String serviceName)
The service name this service is implementing, it maps to the wsdl:servicename.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
skipFaultLogging(boolean skipFaultLogging)
This option controls whether the PhaseInterceptorChain skips logging the Fault that it catches.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
skipFaultLogging(String skipFaultLogging)
This option controls whether the PhaseInterceptorChain skips logging the Fault that it catches.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
sslContextParameters(Object sslContextParameters)
The Camel SSL setting reference.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
sslContextParameters(String sslContextParameters)
The Camel SSL setting reference.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
username(String username)
This option is used to set the basic authentication information of username for the CXF client.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
wrapped(boolean wrapped)
Which kind of operation that CXF endpoint producer will invoke.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
wrapped(String wrapped)
Which kind of operation that CXF endpoint producer will invoke.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
wrappedStyle(Boolean wrappedStyle)
The WSDL style that describes how parameters are represented in the SOAP body.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
wrappedStyle(String wrappedStyle)
The WSDL style that describes how parameters are represented in the SOAP body.default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder
wsdlURL(String wsdlURL)
The location of the WSDL.
-
-
-
Method Detail
-
advanced
default CxfEndpointBuilderFactory.AdvancedCxfEndpointProducerBuilder advanced()
-
dataFormat
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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
-
cookieHandler
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder cookieHandler(Object cookieHandler)
Configure a cookie handler to maintain a HTTP session. The option is a:org.apache.camel.http.base.cookie.CookieHandler
type. Group: producer
-
cookieHandler
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder cookieHandler(String cookieHandler)
Configure a cookie handler to maintain a HTTP session. The option will be converted to aorg.apache.camel.http.base.cookie.CookieHandler
type. Group: producer
-
defaultOperationName
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder defaultOperationName(String defaultOperationName)
This option will set the default operationName that will be used by the CxfProducer which invokes the remote service. The option is a:java.lang.String
type. Group: producer
-
defaultOperationNamespace
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder defaultOperationNamespace(String defaultOperationNamespace)
This option will set the default operationNamespace that will be used by the CxfProducer which invokes the remote service. The option is a:java.lang.String
type. Group: producer
-
hostnameVerifier
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder hostnameVerifier(Object hostnameVerifier)
The hostname verifier to be used. Use the # notation to reference a HostnameVerifier from the registry. The option is a:javax.net.ssl.HostnameVerifier
type. Group: producer
-
hostnameVerifier
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder hostnameVerifier(String hostnameVerifier)
The hostname verifier to be used. Use the # notation to reference a HostnameVerifier from the registry. The option will be converted to ajavax.net.ssl.HostnameVerifier
type. Group: producer
-
lazyStartProducer
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder lazyStartProducer(boolean lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option is a:boolean
type. Default: false Group: producer
-
lazyStartProducer
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder lazyStartProducer(String lazyStartProducer)
Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing. The option will be converted to aboolean
type. Default: false Group: producer
-
sslContextParameters
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder sslContextParameters(Object sslContextParameters)
The Camel SSL setting reference. Use the # notation to reference the SSL Context. The option is a:org.apache.camel.support.jsse.SSLContextParameters
type. Group: producer
-
sslContextParameters
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder sslContextParameters(String sslContextParameters)
The Camel SSL setting reference. Use the # notation to reference the SSL Context. The option will be converted to aorg.apache.camel.support.jsse.SSLContextParameters
type. Group: producer
-
wrapped
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder wrapped(boolean wrapped)
Which kind of operation that CXF endpoint producer will invoke. The option is a:boolean
type. Default: false Group: producer
-
wrapped
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder wrapped(String wrapped)
Which kind of operation that CXF endpoint producer will invoke. The option will be converted to aboolean
type. Default: false Group: producer
-
loggingFeatureEnabled
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder bindingId(String bindingId)
The bindingId for the service model to use. The option is a:java.lang.String
type. Group: service
-
portName
default CxfEndpointBuilderFactory.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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.CxfEndpointProducerBuilder 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
-
-