public static interface BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
| Modifier and Type | Method and Description |
|---|---|
default BeanEndpointBuilderFactory.BeanEndpointBuilder |
basic() |
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder |
basicPropertyBinding(String basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder |
parameters(Map values)
Used for configuring additional properties on the bean.
|
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder |
parameters(String key,
Object value)
Used for configuring additional properties on the bean.
|
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder |
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder |
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default BeanEndpointBuilderFactory.BeanEndpointBuilder basic()
default BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder basicPropertyBinding(String basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder parameters(String key, Object value)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the parameters(String,
Object) method to add a value (call the method multiple times to set
more values).
Group: advanceddefault BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder parameters(Map values)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the parameters(String,
Object) method to add a value (call the method multiple times to set
more values).
Group: advanceddefault BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder synchronous(boolean synchronous)
boolean type.
Default: false
Group: advanceddefault BeanEndpointBuilderFactory.AdvancedBeanEndpointBuilder synchronous(String synchronous)
boolean type.
Default: false
Group: advancedApache Camel