You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2019/10/30 18:25:30 UTC

[camel] branch master updated: update camel-jpa doc about when entityType is a list implementation

This is an automated email from the ASF dual-hosted git repository.

bvahdat pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new a20fdca  update camel-jpa doc about when entityType is a list implementation
a20fdca is described below

commit a20fdcaceb5c84d0672081d2d90cb6b5cdac1255
Author: Babak Vahdat <bv...@apache.org>
AuthorDate: Wed Oct 30 19:25:03 2019 +0100

    update camel-jpa doc about when entityType is a list implementation
---
 components/camel-jpa/src/main/docs/jpa-component.adoc | 8 ++++----
 docs/components/modules/ROOT/pages/jpa-component.adoc | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/components/camel-jpa/src/main/docs/jpa-component.adoc b/components/camel-jpa/src/main/docs/jpa-component.adoc
index ec89af9..a060f28 100644
--- a/components/camel-jpa/src/main/docs/jpa-component.adoc
+++ b/components/camel-jpa/src/main/docs/jpa-component.adoc
@@ -30,7 +30,7 @@ http://java.sun.com/javaee/5/docs/api/javax/persistence/Entity.html[@Entity]
 annotation on it) or a collection or array of entity beans.
 
 If the body is a List of entities, make sure to use
-*entityType=java.util.ArrayList* as a configuration passed to the
+*entityType=java.util.List* as a configuration passed to the
 producer endpoint.
 
 If the body does not contain one of the previous listed types, put a
@@ -419,7 +419,7 @@ Index: 20, Size: 20
 
 [source,xml]
 ---------------------------------------------------------------
-<camelContext xmlns="http://camel.apache.org/schema/spring">   
+<camelContext xmlns="http://camel.apache.org/schema/spring">
     <route id="JpaMessageIdRepositoryTest">
         <from uri="direct:start" />
         <idempotentConsumer messageIdRepositoryRef="jpaStore">
@@ -457,13 +457,13 @@ https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/pom.xml[enhanc
 the byte-code at build time]. To overcome this you need to enable
 http://openjpa.apache.org/entity-enhancement.html#dynamic-enhancement[dynamic
 byte-code enhancement of OpenJPA]. For example, assuming the current
-OpenJPA version being used in Camel is 2.2.1, to run the 
+OpenJPA version being used in Camel is 2.2.1, to run the
 tests inside your IDE you would need to pass the following
 argument to the JVM:
 
 [source,java]
 -------------------------------------------------------------------------------------------
- 
+
 -javaagent:<path_to_your_local_m2_cache>/org/apache/openjpa/openjpa/2.2.1/openjpa-2.2.1.jar
 -------------------------------------------------------------------------------------------
 
diff --git a/docs/components/modules/ROOT/pages/jpa-component.adoc b/docs/components/modules/ROOT/pages/jpa-component.adoc
index 7084dc1..2bc24a5 100644
--- a/docs/components/modules/ROOT/pages/jpa-component.adoc
+++ b/docs/components/modules/ROOT/pages/jpa-component.adoc
@@ -31,7 +31,7 @@ http://java.sun.com/javaee/5/docs/api/javax/persistence/Entity.html[@Entity]
 annotation on it) or a collection or array of entity beans.
 
 If the body is a List of entities, make sure to use
-*entityType=java.util.ArrayList* as a configuration passed to the
+*entityType=java.util.List* as a configuration passed to the
 producer endpoint.
 
 If the body does not contain one of the previous listed types, put a
@@ -420,7 +420,7 @@ Index: 20, Size: 20
 
 [source,xml]
 ---------------------------------------------------------------
-<camelContext xmlns="http://camel.apache.org/schema/spring">   
+<camelContext xmlns="http://camel.apache.org/schema/spring">
     <route id="JpaMessageIdRepositoryTest">
         <from uri="direct:start" />
         <idempotentConsumer messageIdRepositoryRef="jpaStore">
@@ -458,13 +458,13 @@ https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/pom.xml[enhanc
 the byte-code at build time]. To overcome this you need to enable
 http://openjpa.apache.org/entity-enhancement.html#dynamic-enhancement[dynamic
 byte-code enhancement of OpenJPA]. For example, assuming the current
-OpenJPA version being used in Camel is 2.2.1, to run the 
+OpenJPA version being used in Camel is 2.2.1, to run the
 tests inside your IDE you would need to pass the following
 argument to the JVM:
 
 [source,java]
 -------------------------------------------------------------------------------------------
- 
+
 -javaagent:<path_to_your_local_m2_cache>/org/apache/openjpa/openjpa/2.2.1/openjpa-2.2.1.jar
 -------------------------------------------------------------------------------------------