You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2009/01/14 08:01:09 UTC

svn commit: r734350 - /activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedHeader.xml

Author: davsclaus
Date: Tue Jan 13 23:01:08 2009
New Revision: 734350

URL: http://svn.apache.org/viewvc?rev=734350&view=rev
Log:
CAMEL-1251: added snippet tags for wiki documentation

Modified:
    activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedHeader.xml

Modified: activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedHeader.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedHeader.xml?rev=734350&r1=734349&r2=734350&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedHeader.xml (original)
+++ activemq/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/processor/recipientListWithStringDelimitedHeader.xml Tue Jan 13 23:01:08 2009
@@ -22,17 +22,20 @@
        http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
     ">
 
-  <!--
-     from("direct:a").recipientList(header("recipientListHeader").tokenize(","));
-  -->
-  <camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
-    <route>
-      <from uri="direct:a"/>
-      <!-- use comma as a delimiter for String based values -->
-      <recipientList delimiter=",">
-        <header>myHeader</header>
-      </recipientList>    
-    </route>
-  </camelContext>  
+    <!--
+       from("direct:a").recipientList(header("myHeader").tokenize(","));
+    -->
+
+    <!-- START SNIPPET: e1 -->
+    <camelContext id="camel" xmlns="http://activemq.apache.org/camel/schema/spring">
+        <route>
+            <from uri="direct:a"/>
+            <!-- use comma as a delimiter for String based values -->
+            <recipientList delimiter=",">
+                <header>myHeader</header>
+            </recipientList>
+        </route>
+    </camelContext>
+    <!-- END SNIPPET: e1 -->
 
 </beans>