Author: buildbot
Date: Fri Dec 21 12:25:35 2012
New Revision: 843360

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/book-architecture.html
    websites/production/camel/content/book-component-appendix.html
    websites/production/camel/content/book-in-one-page.html
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/component-list-external.html
    websites/production/camel/content/components.html
    websites/production/camel/content/jpa.html
    websites/production/camel/content/transport.html
    websites/production/camel/content/uris.html

Modified: websites/production/camel/content/book-architecture.html
==============================================================================
--- websites/production/camel/content/book-architecture.html (original)
+++ websites/production/camel/content/book-architecture.html Fri Dec 21 
12:25:35 2012
@@ -756,7 +756,12 @@ activemq:[topic:]destinationName
 <pre class="code-xml">
 activemq.journal:directory-on-filesystem
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
href="db4o.html" title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" 
class="external-link" href="http://code.google.com/p/camel-extra/"; 
rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a> / activiti-camel 
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-xml">
+activiti:camelProcess:serviceTask
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a 
shape="rect" class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a>, a light-weight workflow and Business Process 
Management (BPM) platform which supports BPMN 2 </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <a shape="rect" href="db4o.html" 
title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" class="external-link" 
href="http://code.google.com/p/camel-extra/"; rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-xml">
 db4o://className

Modified: websites/production/camel/content/book-component-appendix.html
==============================================================================
--- websites/production/camel/content/book-component-appendix.html (original)
+++ websites/production/camel/content/book-component-appendix.html Fri Dec 21 
12:25:35 2012
@@ -9843,6 +9843,32 @@ from(<span class="code-quote">"jpa:<span
 </pre>
 </div></div>
 
+<div class="panelMacro"><table class="infoMacro"><colgroup span="1"><col 
span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" 
valign="top"><img align="middle" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif";
 width="16" height="16" alt="" border="0"></td><td colspan="1" 
rowspan="1"><b>When running this Camel component tests inside your IDE</b><br 
clear="none">In case you run the <a shape="rect" class="external-link" 
href="https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/src/test";>tests
 of this component</a> directly inside your IDE (and not neccesserily through 
Maven itself) then you could hit the exceptions like:
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+org.springframework.transaction.CannotCreateTransactionException: Could not 
open JPA EntityManager <span class="code-keyword">for</span> transaction; 
nested exception is &lt;openjpa-2.2.1-r422266:1396819 nonfatal user error&gt; 
org.apache.openjpa.persistence.ArgumentException: This configuration disallows 
runtime optimization, but the following listed types were not enhanced at build 
time or at class load time with a javaagent: "
+org.apache.camel.examples.SendEmail".
+       at 
org.springframework.orm.jpa.JpaTransactionManager.doBegin(JpaTransactionManager.java:427)
+       at 
org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:371)
+       at 
org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:127)
+       at 
org.apache.camel.processor.jpa.JpaRouteTest.cleanupRepository(JpaRouteTest.java:96)
+       at 
org.apache.camel.processor.jpa.JpaRouteTest.createCamelContext(JpaRouteTest.java:67)
+       at 
org.apache.camel.test.junit4.CamelTestSupport.doSetUp(CamelTestSupport.java:238)
+       at 
org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:208)
+</pre>
+</div></div>
+
+<p>The problem here is that the source has been compiled/recompiled through 
your IDE and not through Maven which would <a shape="rect" 
class="external-link" 
href="https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/pom.xml";>enhance
 the byte-code at build time</a>. To overcome this you would need to enable <a 
shape="rect" class="external-link" 
href="http://openjpa.apache.org/entity-enhancement.html#dynamic-enhancement";>dynamic
 byte-code enhancement of OpenJPA</a>. As an example assuming the current 
OpenJPA version being used in Camel itself is 2.2.1 then you would need to pass 
the following argument to the JVM inside your IDE:</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java"> 
+-javaagent:&lt;path_to_your_local_m2_cache&gt;/org/apache/openjpa/openjpa/2.2.1/openjpa-2.2.1.jar
+</pre>
+</div></div> 
+
+<p>Then it will all become green again <img align="middle" class="emoticon" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif"; 
height="20" width="20" alt="" border="0"></p></td></tr></table></div>
+
 <h3><a shape="rect" name="BookComponentAppendix-SeeAlso"></a>See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html" title="Configuring 
Camel">Configuring Camel</a></li><li><a shape="rect" href="component.html" 
title="Component">Component</a></li><li><a shape="rect" href="endpoint.html" 
title="Endpoint">Endpoint</a></li><li><a shape="rect" 
href="getting-started.html" title="Getting Started">Getting 
Started</a></li></ul>
 

Modified: websites/production/camel/content/book-in-one-page.html
==============================================================================
--- websites/production/camel/content/book-in-one-page.html (original)
+++ websites/production/camel/content/book-in-one-page.html Fri Dec 21 12:25:35 
2012
@@ -1163,7 +1163,12 @@ activemq:[topic:]destinationName
 <pre class="code-xml">
 activemq.journal:directory-on-filesystem
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
href="db4o.html" title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" 
class="external-link" href="http://code.google.com/p/camel-extra/"; 
rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a> / activiti-camel 
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-xml">
+activiti:camelProcess:serviceTask
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a 
shape="rect" class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a>, a light-weight workflow and Business Process 
Management (BPM) platform which supports BPMN 2 </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <a shape="rect" href="db4o.html" 
title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" class="external-link" 
href="http://code.google.com/p/camel-extra/"; rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-xml">
 db4o://className
@@ -30097,6 +30102,32 @@ from(<span class="code-quote">"jpa:<span
 </pre>
 </div></div>
 
+<div class="panelMacro"><table class="infoMacro"><colgroup span="1"><col 
span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" 
valign="top"><img align="middle" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif";
 width="16" height="16" alt="" border="0"></td><td colspan="1" 
rowspan="1"><b>When running this Camel component tests inside your IDE</b><br 
clear="none">In case you run the <a shape="rect" class="external-link" 
href="https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/src/test";>tests
 of this component</a> directly inside your IDE (and not neccesserily through 
Maven itself) then you could hit the exceptions like:
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+org.springframework.transaction.CannotCreateTransactionException: Could not 
open JPA EntityManager <span class="code-keyword">for</span> transaction; 
nested exception is &lt;openjpa-2.2.1-r422266:1396819 nonfatal user error&gt; 
org.apache.openjpa.persistence.ArgumentException: This configuration disallows 
runtime optimization, but the following listed types were not enhanced at build 
time or at class load time with a javaagent: "
+org.apache.camel.examples.SendEmail".
+       at 
org.springframework.orm.jpa.JpaTransactionManager.doBegin(JpaTransactionManager.java:427)
+       at 
org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:371)
+       at 
org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:127)
+       at 
org.apache.camel.processor.jpa.JpaRouteTest.cleanupRepository(JpaRouteTest.java:96)
+       at 
org.apache.camel.processor.jpa.JpaRouteTest.createCamelContext(JpaRouteTest.java:67)
+       at 
org.apache.camel.test.junit4.CamelTestSupport.doSetUp(CamelTestSupport.java:238)
+       at 
org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:208)
+</pre>
+</div></div>
+
+<p>The problem here is that the source has been compiled/recompiled through 
your IDE and not through Maven which would <a shape="rect" 
class="external-link" 
href="https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/pom.xml";>enhance
 the byte-code at build time</a>. To overcome this you would need to enable <a 
shape="rect" class="external-link" 
href="http://openjpa.apache.org/entity-enhancement.html#dynamic-enhancement";>dynamic
 byte-code enhancement of OpenJPA</a>. As an example assuming the current 
OpenJPA version being used in Camel itself is 2.2.1 then you would need to pass 
the following argument to the JVM inside your IDE:</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java"> 
+-javaagent:&lt;path_to_your_local_m2_cache&gt;/org/apache/openjpa/openjpa/2.2.1/openjpa-2.2.1.jar
+</pre>
+</div></div> 
+
+<p>Then it will all become green again <img align="middle" class="emoticon" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif"; 
height="20" width="20" alt="" border="0"></p></td></tr></table></div>
+
 <h3><a shape="rect" name="BookInOnePage-SeeAlso"></a>See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html" title="Configuring 
Camel">Configuring Camel</a></li><li><a shape="rect" href="component.html" 
title="Component">Component</a></li><li><a shape="rect" href="endpoint.html" 
title="Endpoint">Endpoint</a></li><li><a shape="rect" 
href="getting-started.html" title="Getting Started">Getting 
Started</a></li></ul>
 

Modified: websites/production/camel/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/camel/content/component-list-external.html
==============================================================================
--- websites/production/camel/content/component-list-external.html (original)
+++ websites/production/camel/content/component-list-external.html Fri Dec 21 
12:25:35 2012
@@ -86,7 +86,12 @@ activemq:[topic:]destinationName
 <pre class="code-xml">
 activemq.journal:directory-on-filesystem
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
href="db4o.html" title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" 
class="external-link" href="http://code.google.com/p/camel-extra/"; 
rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a> / activiti-camel 
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-xml">
+activiti:camelProcess:serviceTask
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a 
shape="rect" class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a>, a light-weight workflow and Business Process 
Management (BPM) platform which supports BPMN 2 </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <a shape="rect" href="db4o.html" 
title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" class="external-link" 
href="http://code.google.com/p/camel-extra/"; rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-xml">
 db4o://className

Modified: websites/production/camel/content/components.html
==============================================================================
--- websites/production/camel/content/components.html (original)
+++ websites/production/camel/content/components.html Fri Dec 21 12:25:35 2012
@@ -732,7 +732,12 @@ activemq:[topic:]destinationName
 <pre class="code-xml">
 activemq.journal:directory-on-filesystem
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
href="db4o.html" title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" 
class="external-link" href="http://code.google.com/p/camel-extra/"; 
rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a> / activiti-camel 
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-xml">
+activiti:camelProcess:serviceTask
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a 
shape="rect" class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a>, a light-weight workflow and Business Process 
Management (BPM) platform which supports BPMN 2 </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <a shape="rect" href="db4o.html" 
title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" class="external-link" 
href="http://code.google.com/p/camel-extra/"; rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-xml">
 db4o://className

Modified: websites/production/camel/content/jpa.html
==============================================================================
--- websites/production/camel/content/jpa.html (original)
+++ websites/production/camel/content/jpa.html Fri Dec 21 12:25:35 2012
@@ -264,6 +264,32 @@ from(<span class="code-quote">"jpa:<span
 </pre>
 </div></div>
 
+<div class="panelMacro"><table class="infoMacro"><colgroup span="1"><col 
span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" 
valign="top"><img align="middle" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/information.gif";
 width="16" height="16" alt="" border="0"></td><td colspan="1" 
rowspan="1"><b>When running this Camel component tests inside your IDE</b><br 
clear="none">In case you run the <a shape="rect" class="external-link" 
href="https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/src/test";>tests
 of this component</a> directly inside your IDE (and not neccesserily through 
Maven itself) then you could hit the exceptions like:
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java">
+org.springframework.transaction.CannotCreateTransactionException: Could not 
open JPA EntityManager <span class="code-keyword">for</span> transaction; 
nested exception is &lt;openjpa-2.2.1-r422266:1396819 nonfatal user error&gt; 
org.apache.openjpa.persistence.ArgumentException: This configuration disallows 
runtime optimization, but the following listed types were not enhanced at build 
time or at class load time with a javaagent: "
+org.apache.camel.examples.SendEmail".
+       at 
org.springframework.orm.jpa.JpaTransactionManager.doBegin(JpaTransactionManager.java:427)
+       at 
org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:371)
+       at 
org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:127)
+       at 
org.apache.camel.processor.jpa.JpaRouteTest.cleanupRepository(JpaRouteTest.java:96)
+       at 
org.apache.camel.processor.jpa.JpaRouteTest.createCamelContext(JpaRouteTest.java:67)
+       at 
org.apache.camel.test.junit4.CamelTestSupport.doSetUp(CamelTestSupport.java:238)
+       at 
org.apache.camel.test.junit4.CamelTestSupport.setUp(CamelTestSupport.java:208)
+</pre>
+</div></div>
+
+<p>The problem here is that the source has been compiled/recompiled through 
your IDE and not through Maven which would <a shape="rect" 
class="external-link" 
href="https://svn.apache.org/repos/asf/camel/trunk/components/camel-jpa/pom.xml";>enhance
 the byte-code at build time</a>. To overcome this you would need to enable <a 
shape="rect" class="external-link" 
href="http://openjpa.apache.org/entity-enhancement.html#dynamic-enhancement";>dynamic
 byte-code enhancement of OpenJPA</a>. As an example assuming the current 
OpenJPA version being used in Camel itself is 2.2.1 then you would need to pass 
the following argument to the JVM inside your IDE:</p>
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-java"> 
+-javaagent:&lt;path_to_your_local_m2_cache&gt;/org/apache/openjpa/openjpa/2.2.1/openjpa-2.2.1.jar
+</pre>
+</div></div> 
+
+<p>Then it will all become green again <img align="middle" class="emoticon" 
src="https://cwiki.apache.org/confluence/images/icons/emoticons/smile.gif"; 
height="20" width="20" alt="" border="0"></p></td></tr></table></div>
+
 <h3><a shape="rect" name="JPA-SeeAlso"></a>See Also</h3>
 <ul><li><a shape="rect" href="configuring-camel.html" title="Configuring 
Camel">Configuring Camel</a></li><li><a shape="rect" href="component.html" 
title="Component">Component</a></li><li><a shape="rect" href="endpoint.html" 
title="Endpoint">Endpoint</a></li><li><a shape="rect" 
href="getting-started.html" title="Getting Started">Getting 
Started</a></li></ul>
 

Modified: websites/production/camel/content/transport.html
==============================================================================
--- websites/production/camel/content/transport.html (original)
+++ websites/production/camel/content/transport.html Fri Dec 21 12:25:35 2012
@@ -736,7 +736,12 @@ activemq:[topic:]destinationName
 <pre class="code-xml">
 activemq.journal:directory-on-filesystem
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
href="db4o.html" title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" 
class="external-link" href="http://code.google.com/p/camel-extra/"; 
rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a> / activiti-camel 
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-xml">
+activiti:camelProcess:serviceTask
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a 
shape="rect" class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a>, a light-weight workflow and Business Process 
Management (BPM) platform which supports BPMN 2 </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <a shape="rect" href="db4o.html" 
title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" class="external-link" 
href="http://code.google.com/p/camel-extra/"; rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-xml">
 db4o://className

Modified: websites/production/camel/content/uris.html
==============================================================================
--- websites/production/camel/content/uris.html (original)
+++ websites/production/camel/content/uris.html Fri Dec 21 12:25:35 2012
@@ -735,7 +735,12 @@ activemq:[topic:]destinationName
 <pre class="code-xml">
 activemq.journal:directory-on-filesystem
 </pre>
-</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
href="db4o.html" title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" 
class="external-link" href="http://code.google.com/p/camel-extra/"; 
rel="nofollow">camel-extra</a>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> Uses ActiveMQ's fast 
disk journaling implementation to store message bodies in a rolling log file 
</td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"> <a shape="rect" 
class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a> / activiti-camel 
+<div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
+<pre class="code-xml">
+activiti:camelProcess:serviceTask
+</pre>
+</div></div> </td><td colspan="1" rowspan="1" class="confluenceTd"> Apache 
</td><td colspan="1" rowspan="1" class="confluenceTd"> For working with <a 
shape="rect" class="external-link" href="http://www.activiti.org/"; 
rel="nofollow">Activiti</a>, a light-weight workflow and Business Process 
Management (BPM) platform which supports BPMN 2 </td></tr><tr><td colspan="1" 
rowspan="1" class="confluenceTd"> <a shape="rect" href="db4o.html" 
title="Db4o">Db4o</a> / camel-db4o in <a shape="rect" class="external-link" 
href="http://code.google.com/p/camel-extra/"; rel="nofollow">camel-extra</a>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
 <pre class="code-xml">
 db4o://className


Reply via email to