default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder.basic() |
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.findEntity(boolean findEntity) |
If enabled then the producer will find a single entity by using the
message body as key and entityType as the class type.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.findEntity(String findEntity) |
If enabled then the producer will find a single entity by using the
message body as key and entityType as the class type.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.flushOnSend(boolean flushOnSend) |
Flushes the EntityManager after the entity bean has been persisted.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.flushOnSend(String flushOnSend) |
Flushes the EntityManager after the entity bean has been persisted.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.joinTransaction(boolean joinTransaction) |
The camel-jpa component will join transaction by default.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.joinTransaction(String joinTransaction) |
The camel-jpa component will join transaction by default.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.lazyStartProducer(boolean lazyStartProducer) |
Whether the producer should be started lazy (on the first message).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.lazyStartProducer(String lazyStartProducer) |
Whether the producer should be started lazy (on the first message).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.maximumResults(int maximumResults) |
Set the maximum number of results to retrieve on the Query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.maximumResults(String maximumResults) |
Set the maximum number of results to retrieve on the Query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.namedQuery(String namedQuery) |
To use a named query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.nativeQuery(String nativeQuery) |
To use a custom native query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.persistenceUnit(String persistenceUnit) |
The JPA persistence unit used by default.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.query(String query) |
To use a custom query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.remove(boolean remove) |
Indicates to use entityManager.remove(entity).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.remove(String remove) |
Indicates to use entityManager.remove(entity).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.resultClass(Class<Object> resultClass) |
Defines the type of the returned payload (we will call
entityManager.createNativeQuery(nativeQuery, resultClass) instead of
entityManager.createNativeQuery(nativeQuery)).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.resultClass(String resultClass) |
Defines the type of the returned payload (we will call
entityManager.createNativeQuery(nativeQuery, resultClass) instead of
entityManager.createNativeQuery(nativeQuery)).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.useExecuteUpdate(Boolean useExecuteUpdate) |
To configure whether to use executeUpdate() when producer executes a
query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.useExecuteUpdate(String useExecuteUpdate) |
To configure whether to use executeUpdate() when producer executes a
query.
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.usePersist(boolean usePersist) |
Indicates to use entityManager.persist(entity) instead of
entityManager.merge(entity).
|
default JpaEndpointBuilderFactory.JpaEndpointProducerBuilder |
JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.usePersist(String usePersist) |
Indicates to use entityManager.persist(entity) instead of
entityManager.merge(entity).
|