public static interface JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder
extends org.apache.camel.builder.EndpointProducerBuilder
| Modifier and Type | Method and Description |
|---|---|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
basic() |
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
basicPropertyBinding(boolean basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
basicPropertyBinding(String basicPropertyBinding)
Whether the endpoint should use basic property binding (Camel 2.x) or
the newer property binding with additional capabilities.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
entityManagerProperties(Map values)
Additional properties for the entity manager to use.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
entityManagerProperties(String key,
Object value)
Additional properties for the entity manager to use.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
sharedEntityManager(boolean sharedEntityManager)
Whether to use Spring's SharedEntityManager for the
consumer/producer.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
sharedEntityManager(String sharedEntityManager)
Whether to use Spring's SharedEntityManager for the
consumer/producer.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
synchronous(boolean synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
synchronous(String synchronous)
Sets whether synchronous processing should be strictly used, or Camel
is allowed to use asynchronous processing (if supported).
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
usePassedInEntityManager(boolean usePassedInEntityManager)
If set to true, then Camel will use the EntityManager from the header
JpaConstants.ENTITY_MANAGER instead of the configured entity manager
on the component/endpoint.
|
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder |
usePassedInEntityManager(String usePassedInEntityManager)
If set to true, then Camel will use the EntityManager from the header
JpaConstants.ENTITY_MANAGER instead of the configured entity manager
on the component/endpoint.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder basic()
default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder usePassedInEntityManager(boolean usePassedInEntityManager)
boolean type.
Default: false
Group: producer (advanced)default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder usePassedInEntityManager(String usePassedInEntityManager)
boolean type.
Default: false
Group: producer (advanced)default JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder basicPropertyBinding(boolean basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder basicPropertyBinding(String basicPropertyBinding)
boolean type.
Default: false
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder entityManagerProperties(String key, Object value)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
entityManagerProperties(String, Object) method to add a value (call
the method multiple times to set more values).
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder entityManagerProperties(Map values)
java.util.Map<java.lang.String,
java.lang.Object> type.
The option is multivalued, and you can use the
entityManagerProperties(String, Object) method to add a value (call
the method multiple times to set more values).
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder sharedEntityManager(boolean sharedEntityManager)
boolean type.
Default: false
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder sharedEntityManager(String sharedEntityManager)
boolean type.
Default: false
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder synchronous(boolean synchronous)
boolean type.
Default: false
Group: advanceddefault JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder synchronous(String synchronous)
boolean type.
Default: false
Group: advancedApache Camel