public static interface WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
| Modifier and Type | Method and Description |
|---|---|
default WsEndpointBuilderFactory.WsEndpointProducerBuilder |
basic() |
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
basicPropertyBinding(String basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
binding(Object binding)
To use a custom AhcBinding which allows to control how to bind
between AHC and Camel.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
binding(String binding)
To use a custom AhcBinding which allows to control how to bind
between AHC and Camel.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
clientConfig(Object clientConfig)
To configure the AsyncHttpClient to use a custom
com.ning.http.client.AsyncHttpClientConfig instance.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
clientConfig(String clientConfig)
To configure the AsyncHttpClient to use a custom
com.ning.http.client.AsyncHttpClientConfig instance.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
clientConfigOptions(Map values)
To configure the AsyncHttpClientConfig using the key/values from the
Map.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
clientConfigOptions(String key,
Object value)
To configure the AsyncHttpClientConfig using the key/values from the
Map.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
clientConfigRealmOptions(Map values)
To configure the AsyncHttpClientConfig Realm using the key/values
from the Map.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
clientConfigRealmOptions(String key,
Object value)
To configure the AsyncHttpClientConfig Realm using the key/values
from the Map.
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder |
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default WsEndpointBuilderFactory.WsEndpointProducerBuilder basic()
default WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder basicPropertyBinding(String basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder binding(Object binding)
org.apache.camel.component.ahc.AhcBinding type.
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder binding(String binding)
org.apache.camel.component.ahc.AhcBinding type.
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder clientConfig(Object clientConfig)
org.asynchttpclient.AsyncHttpClientConfig type.
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder clientConfig(String clientConfig)
org.asynchttpclient.AsyncHttpClientConfig type.
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder clientConfigOptions(String key, Object value)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
clientConfigOptions(String, Object) method to add a value (call the
method multiple times to set more values).
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder clientConfigOptions(Map values)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
clientConfigOptions(String, Object) method to add a value (call the
method multiple times to set more values).
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder synchronous(boolean synchronous)
boolean type.
Default: false
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder synchronous(String synchronous)
boolean type.
Default: false
Group: advanceddefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder clientConfigRealmOptions(String key, Object value)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
clientConfigRealmOptions(String, Object) method to add a value (call
the method multiple times to set more values).
Group: securitydefault WsEndpointBuilderFactory.AdvancedWsEndpointProducerBuilder clientConfigRealmOptions(Map values)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
clientConfigRealmOptions(String, Object) method to add a value (call
the method multiple times to set more values).
Group: securityApache Camel