Uses of Interface
org.apache.camel.builder.endpoint.dsl.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder
Packages that use JpaEndpointBuilderFactory.JpaEndpointProducerBuilder
-
Uses of JpaEndpointBuilderFactory.JpaEndpointProducerBuilder in org.apache.camel.builder.endpoint.dsl
Subinterfaces of JpaEndpointBuilderFactory.JpaEndpointProducerBuilder in org.apache.camel.builder.endpoint.dslModifier and TypeInterfaceDescriptionstatic interfaceBuilder for endpoint for the JPA component.Methods in org.apache.camel.builder.endpoint.dsl that return JpaEndpointBuilderFactory.JpaEndpointProducerBuilderModifier and TypeMethodDescriptionJpaEndpointBuilderFactory.AdvancedJpaEndpointProducerBuilder.basic()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.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.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.firstResult(int firstResult) Set the position of the first result to retrieve.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.firstResult(String firstResult) Set the position of the first result to retrieve.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.flushOnSend(boolean flushOnSend) Flushes the EntityManager after the entity bean has been persisted.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.flushOnSend(String flushOnSend) Flushes the EntityManager after the entity bean has been persisted.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.joinTransaction(boolean joinTransaction) The camel-jpa component will join transaction by default.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.joinTransaction(String joinTransaction) The camel-jpa component will join transaction by default.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.maximumResults(int maximumResults) Set the maximum number of results to retrieve on the Query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.maximumResults(String maximumResults) Set the maximum number of results to retrieve on the Query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.namedQuery(String namedQuery) To use a named query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.nativeQuery(String nativeQuery) To use a custom native query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.outputTarget(String outputTarget) To put the query (or find) result in a header or property instead of the body.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.persistenceUnit(String persistenceUnit) The JPA persistence unit used by default.To use a custom query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.remove(boolean remove) Indicates to use entityManager.remove(entity).Indicates to use entityManager.remove(entity).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)).JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.resultClass(String resultClass) Defines the type of the returned payload (we will call entityManager.createNativeQuery(nativeQuery, resultClass) instead of entityManager.createNativeQuery(nativeQuery)).JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.singleResult(boolean singleResult) If enabled, a query or a find which would return no results or more than one result, will throw an exception instead.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.singleResult(String singleResult) If enabled, a query or a find which would return no results or more than one result, will throw an exception instead.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.useExecuteUpdate(Boolean useExecuteUpdate) To configure whether to use executeUpdate() when producer executes a query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.useExecuteUpdate(String useExecuteUpdate) To configure whether to use executeUpdate() when producer executes a query.JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.usePersist(boolean usePersist) Indicates to use entityManager.persist(entity) instead of entityManager.merge(entity).JpaEndpointBuilderFactory.JpaEndpointProducerBuilder.usePersist(String usePersist) Indicates to use entityManager.persist(entity) instead of entityManager.merge(entity).