You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2017/08/31 23:20:56 UTC

svn commit: r1017534 [3/5] - in /websites/production/camel/content: aggregator.html aggregator2.html book-in-one-page.html book-pattern-appendix.html cache/main.pageCache

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 Thu Aug 31 23:20:55 2017
@@ -125,7 +125,7 @@ Apache Camel ™ is a versatile open
 
 <p>This can be created in a route like this:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
    &lt;from uri=&quot;jms:queue:order&quot;/&gt;
    &lt;pipeline&gt;
@@ -140,7 +140,7 @@ Apache Camel &#8482; is a versatile open
 <div class="confluence-information-macro confluence-information-macro-tip"><p class="title">Pipeline is default</p><span class="aui-icon aui-icon-small aui-iconfont-approve confluence-information-macro-icon"></span><div class="confluence-information-macro-body">
 <p>In the route above we specify <code>pipeline</code> but it can be omitted as its default, so you can write the route as:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
    &lt;from uri=&quot;jms:queue:order&quot;/&gt;
    &lt;bean ref=&quot;validateOrder&quot;/&gt;
@@ -153,7 +153,7 @@ Apache Camel &#8482; is a versatile open
 
 <p>An example where the pipeline needs to be used, is when using a multicast and "one" of the endpoints to send to (as a logical group) is a pipeline of other endpoints. For example.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
    &lt;from uri=&quot;jms:queue:order&quot;/&gt;
    &lt;multicast&gt;
@@ -170,7 +170,7 @@ Apache Camel &#8482; is a versatile open
 
 <p>The above sends the order (from <code>jms:queue:order</code>) to two locations at the same time, our log component, and to the "pipeline" of beans which goes one to the other. If you consider the opposite, sans the <code>&lt;pipeline&gt;</code></p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
    &lt;from uri=&quot;jms:queue:order&quot;/&gt;
    &lt;multicast&gt;
@@ -189,7 +189,7 @@ Apache Camel &#8482; is a versatile open
 <p>Where as the <code>bean ref</code> is a reference for a spring bean id, so we define our beans using regular Spring XML as:</p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
    &lt;bean id=&quot;validateOrder&quot; class=&quot;com.mycompany.MyOrderValidator&quot;/&gt;
 ]]></script>
 </div></div>
@@ -205,7 +205,7 @@ Apache Camel &#8482; is a versatile open
 <p>In the route lets imagine that the registration of the order has to be done by sending data to a TCP socket that could be a big mainframe. As Camel has many <a shape="rect" href="components.html">Components</a> we will use the camel-mina component that supports <a shape="rect" href="mina.html">TCP</a> connectivity. So we change the route to:</p>
 
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
    &lt;from uri=&quot;jms:queue:order&quot;/&gt;
    &lt;bean ref=&quot;validateOrder&quot;/&gt;
@@ -222,7 +222,7 @@ Apache Camel &#8482; is a versatile open
 
 <p>What to notice here is that the <code>to</code> is not the end of the route (the world <img class="emoticon emoticon-wink" src="https://cwiki.apache.org/confluence/s/en_GB/5997/6f42626d00e36f53fe51440403446ca61552e2a2.1/_/images/icons/emoticons/wink.png" data-emoticon-name="wink" alt="(wink)">) in this example it's used in the middle of the <a shape="rect" href="pipes-and-filters.html">Pipes and filters</a>. In fact we can change the <code>bean</code> types to <code>to</code> as well:</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: xml; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 &lt;route&gt;
    &lt;from uri=&quot;jms:queue:order&quot;/&gt;
    &lt;to uri=&quot;bean:validateOrder&quot;/&gt;
@@ -264,7 +264,7 @@ One of the most famous patterns books is
 <p>The breadcrumbs at the top of the online Camel documentation can help you navigate between parent and child subsections.  <br clear="none">
 For example, If you are on the "Languages" documentation page then the left-hand side of the reddish bar contains the following links.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 Apache Camel &gt; Documentation &gt; Architecture &gt; Languages
 ]]></script>
 </div></div>
@@ -317,14 +317,14 @@ To date, URNs are not (yet) as popular a
 <p><em>Component</em> is confusing terminology; <em>EndpointFactory</em> would have been more appropriate because a <code>Component</code> is a factory for creating <code>Endpoint</code> instances. For example, if a Camel-based application uses several JMS queues then the application will create one instance of the <code>JmsComponent</code> class (which implements the <code>Component</code> interface), and then the application invokes the <code>createEndpoint()</code> operation on this <code>JmsComponent</code> object several times. Each invocation of <code>JmsComponent.createEndpoint()</code> creates an instance of the <code>JmsEndpoint</code> class (which implements the <code>Endpoint</code> interface). Actually, application-level code does not invoke <code>Component.createEndpoint()</code> directly. Instead, application-level code normally invokes <code>CamelContext.getEndpoint()</code>; internally, the <code>CamelContext</code> object finds the desired <code>Component</code> obj
 ect (as I will discuss shortly) and then invokes <code>createEndpoint()</code> on it.<br clear="none">
 Consider the following code.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 myCamelContext.getEndpoint(&quot;pop3://john.smith@mailserv.example.com?password=myPassword&quot;);
 ]]></script>
 </div></div>
 <p>The parameter to <code>getEndpoint()</code> is a URI. The URI <em>prefix</em> (that is, the part before ":") specifies the name of a component. Internally, the <code>CamelContext</code> object maintains a mapping from names of components to <code>Component</code> objects. For the URI given in the above example, the <code>CamelContext</code> object would probably map the <code>pop3</code> prefix to an instance of the <code>MailComponent</code> class. Then the <code>CamelContext</code> object invokes <code>createEndpoint("pop3://john.smith@mailserv.example.com?password=myPassword")</code> on that <code>MailComponent</code> object. The <code>createEndpoint()</code> operation splits the URI into its component parts and uses these parts to create and configure an <code>Endpoint</code> object.<br clear="none">
 In the previous paragraph, I mentioned that a <code>CamelContext</code> object maintains a mapping from component names to <code>Component</code> objects. This raises the question of how this map is populated with named <code>Component</code> objects. There are two ways of populating the map. The first way is for application-level code to invoke <code>CamelContext.addComponent(String componentName, Component component)</code>. The example below shows a single <code>MailComponent</code> object being registered in the map under 3 different names.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 Component mailComponent = new org.apache.camel.component.mail.MailComponent();
 myCamelContext.addComponent(&quot;pop3&quot;, mailComponent);
 myCamelContext.addComponent(&quot;imap&quot;, mailComponent);
@@ -333,7 +333,7 @@ myCamelContext.addComponent(&quot;smtp&q
 </div></div>
 <p>The second (and preferred) way to populate the map of named <code>Component</code> objects in the <code>CamelContext</code> object is to let the <code>CamelContext</code> object perform lazy initialization. This approach relies on developers following a convention when they write a class that implements the <code>Component</code> interface. I illustrate the convention by an example. Let's assume you write a class called <code>com.example.myproject.FooComponent</code> and you want Camel to automatically recognize this by the name "foo". To do this, you have to write a properties file called "META-INF/services/org/apache/camel/component/foo" (without a ".properties" file extension) that has a single entry in it called <code>class</code>, the value of which is the fully-scoped name of your class. This is shown below.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>META-INF/services/org/apache/camel/component/foo</b></div><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 class=com.example.myproject.FooComponent
 ]]></script>
 </div></div>
@@ -341,13 +341,13 @@ class=com.example.myproject.FooComponent
 As I said in <a shape="rect" href="#BookInOnePage-endpoint">Section 4.1 ("Endpoint")</a>, Camel provides out-of-the-box support for numerous communication technologies. The out-of-the-box support consists of classes that implement the <code>Component</code> interface plus properties files that enable a <code>CamelContext</code> object to populate its map of named <code>Component</code> objects.<br clear="none">
 Earlier in this section I gave the following example of calling <code>CamelContext.getEndpoint()</code>.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 myCamelContext.getEndpoint(&quot;pop3://john.smith@mailserv.example.com?password=myPassword&quot;);
 ]]></script>
 </div></div>
 <p>When I originally gave that example, I said that the parameter to <code>getEndpoint()</code> was a URI. I said that because the online Camel documentation and the Camel source code both claim the parameter is a URI. In reality, the parameter is restricted to being a URL. This is because when Camel extracts the component name from the parameter, it looks for the first ":", which is a simplistic algorithm. To understand why, recall from <a shape="rect" href="#BookInOnePage-url-uri-urn-iri">Section 4.4 ("The Meaning of URL, URI, URN and IRI")</a> that a URI can be a URL <em>or</em> a URN. Now consider the following calls to <code>getEndpoint</code>.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 myCamelContext.getEndpoint(&quot;pop3:...&quot;);
 myCamelContext.getEndpoint(&quot;jms:...&quot;);
 myCamelContext.getEndpoint(&quot;urn:foo:...&quot;);
@@ -367,7 +367,7 @@ Application-level programmers rarely acc
 <h3 id="BookInOnePage-Processor">Processor</h3>
 <p>The <code>Processor</code> interface represents a class that processes a message. The signature of this interface is shown below.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>Processor</b></div><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 package org.apache.camel;
 public interface Processor {
     void process(Exchange exchange) throws Exception;
@@ -384,7 +384,7 @@ An application-level developer might imp
 <h4 id="BookInOnePage-IntroductiontoJavaDSL">Introduction to Java DSL</h4>
 <p>For many people, the term "domain-specific language" implies a compiler or interpreter that can process an input file containing keywords and syntax specific to a particular domain. This is <em>not</em> the approach taken by Camel. Camel documentation consistently uses the term "Java DSL" instead of "DSL", but this does not entirely avoid potential confusion. The Camel "Java DSL" is a class library that can be used in a way that looks almost like a DSL, except that it has a bit of Java syntactic baggage. You can see this in the example below. Comments afterwards explain some of the constructs used in the example.</p>
 <div class="code panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" style="border-bottom-width: 1px;"><b>Example of Camel's "Java DSL"</b></div><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[
 RouteBuilder builder = new RouteBuilder() {
     public void configure() {
         from(&quot;queue:a&quot;).filter(header(&quot;foo&quot;).isEqualTo(&quot;bar&quot;)).to(&quot;queue:b&quot;);
@@ -435,601 +435,601 @@ Camel uses a Java based <a shape="rect"
 <h3 id="BookInOnePage-CurrentSupportedURIs">Current Supported URIs</h3>
 
 <div class="table-wrap"><table class="confluenceTable"><tbody><tr><th colspan="1" rowspan="1" class="confluenceTh"><p>Component / ArtifactId / URI</p></th><th colspan="1" rowspan="1" class="confluenceTh"><p>Description</p></th></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ahc.html">AHC</a> /&#160;<code>camel-ahc</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ahc:http[s]://hostName[:port][/resourceUri][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ahc:http[s]://hostName[:port][/resourceUri][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To call external HTTP services using <a shape="rect" class="external-link" href="https://github.com/AsyncHttpClient/async-http-client" rel="nofollow">Async Http Client</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ahc-ws.html">AHC-WS</a> <span> /&#160;<code>camel-ahc-ws</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ahc-ws[s]://hostName[:port][/resourceUri][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ahc-ws[s]://hostName[:port][/resourceUri][?options]
 ]]></script>
 </div></div><p><span> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;To exchange data with external Websocket servers using <a shape="rect" class="external-link" href="https://github.com/AsyncHttpClient/async-http-client" rel="nofollow">Async Http Client</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="amqp.html">AMQP</a> /&#160;<code>camel-amqp</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[amqp:[queue:|topic:]destinationName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[amqp:[queue:|topic:]destinationName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For Messaging with <a shape="rect" class="external-link" href="http://www.amqp.org/" rel="nofollow">AMQP protocol</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="apns.html">APNS</a> /&#160;<code>camel-apns</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[apns:&lt;notify|consumer&gt;[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[apns:&lt;notify|consumer&gt;[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For sending notifications to Apple iOS devices</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="atmosphere-websocket.html">Atmosphere-Websocket</a> <span>&#160;</span> <span> /&#160;<code>camel-atmosphere-websocket</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[atmosphere-websocket:///relative path[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[atmosphere-websocket:///relative path[?options]
 ]]></script>
 </div></div><p><span> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;<span>To exchange data with external Websocket clients using </span> <a shape="rect" class="external-link" href="https://github.com/Atmosphere/atmosphere" rel="nofollow">Atmosphere</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="atom.html">Atom</a> /&#160;<code>camel-atom</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[atom:atomUri[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[atom:atomUri[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Working with <a shape="rect" class="external-link" href="http://incubator.apache.org/abdera/">Apache Abdera</a> for atom integration, such as consuming an atom feed.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="avro.html">Avro</a> /&#160;<code>camel-avro</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[avro:[transport]:[host]:[port][/messageName][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[avro:[transport]:[host]:[port][/messageName][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Working with <a shape="rect" class="external-link" href="http://avro.apache.org/">Apache Avro</a> for data serialization.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-cw.html">AWS-CW</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-cw://namespace[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-cw://namespace[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/cloudwatch/" rel="nofollow">Amazon's CloudWatch (CW)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-ddb.html">AWS-DDB</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-ddb://tableName[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-ddb://tableName[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/dynamodb/" rel="nofollow">Amazon's DynamoDB (DDB)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-ddbstream.html">AWS-DDBSTREAM</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-ddbstream://tableName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-ddbstream://tableName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html" rel="nofollow">Amazon's DynamoDB Streams (DDB Streams)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-ec2.html">AWS-EC2</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-ec2://label[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-ec2://label[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/ec2/" rel="nofollow">Amazon's Elastic Compute Cloud (EC2)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-sdb.html">AWS-SDB</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-sdb://domainName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-sdb://domainName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/simpledb/" rel="nofollow">Amazon's SimpleDB (SDB)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-ses.html">AWS-SES</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-ses://from[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-ses://from[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/ses/" rel="nofollow">Amazon's Simple Email Service (SES)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-sns.html">AWS-SNS</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-sns://topicName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-sns://topicName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For Messaging with <a shape="rect" class="external-link" href="http://aws.amazon.com/sns/" rel="nofollow">Amazon's Simple Notification Service (SNS)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-sqs.html">AWS-SQS</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-sqs://queueName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-sqs://queueName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For Messaging with <a shape="rect" class="external-link" href="http://aws.amazon.com/sqs/" rel="nofollow">Amazon's Simple Queue Service (SQS)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-swf.html">AWS-SWF</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-swf://&lt;worfklow|activity&gt;[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-swf://&lt;worfklow|activity&gt;[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For Messaging with <a shape="rect" class="external-link" href="http://aws.amazon.com/swf/" rel="nofollow">Amazon's Simple Workflow Service (SWF)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="aws-s3.html">AWS-S3</a> / <a shape="rect" href="aws.html">camel-aws</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[aws-s3://bucketName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[aws-s3://bucketName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/s3/" rel="nofollow">Amazon's Simple Storage Service (S3)</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="bean.html">Bean</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[bean:beanName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[bean:beanName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Uses the <a shape="rect" href="bean-binding.html">Bean Binding</a> to bind message exchanges to beans in the <a shape="rect" href="registry.html">Registry</a>. Is also used for exposing and invoking POJO (Plain Old Java Objects).</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="beanstalk.html">Beanstalk</a> <span> /&#160;<code>camel-beanstalk</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[beanstalk:hostname:port/tube[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[beanstalk:hostname:port/tube[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://aws.amazon.com/elasticbeanstalk/" rel="nofollow">Amazon's Beanstalk</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="bean-validator.html">Bean Validator</a> /&#160;<code>camel-bean-validator</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[bean-validator:label[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[bean-validator:label[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Validates the payload of a message using the Java Validation API (<a shape="rect" class="external-link" href="http://jcp.org/en/jsr/detail?id=303" rel="nofollow">JSR 303</a> and JAXP Validation) and its reference implementation <a shape="rect" class="external-link" href="http://docs.jboss.org/hibernate/stable/validator/reference/en/html_single/" rel="nofollow">Hibernate Validator</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="box.html">Box</a> /&#160;<code>camel-box</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[box://endpoint-prefix/endpoint?[options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[box://endpoint-prefix/endpoint?[options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For uploading, downloading and managing files, managing files, folders, groups, collaborations, etc. on Box.com.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><span> <a shape="rect" href="braintree.html">Braintree</a> /&#160;<code>camel-braintree</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[braintree://endpoint-prefix/endpoint?[options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[braintree://endpoint-prefix/endpoint?[options]]]></script>
 </div></div><p><span> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>Component for interacting with Braintree Payments via Braintree Java SDK</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="browse.html">Browse</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[browse:someName
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[browse:someName
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Provides a simple <a shape="rect" href="browsableendpoint.html">BrowsableEndpoint</a> which can be useful for testing, visualisation tools or debugging. The exchanges sent to the endpoint are all available to be browsed.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cache.html">Cache</a> /&#160;<code>camel-cache</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cache://cacheName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cache://cacheName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>The cache component facilitates creation of caching endpoints and processors using <a shape="rect" class="external-link" href="http://ehcache.org/" rel="nofollow">EHCache</a> as the cache implementation.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cassandra.html">Cassandra</a> / <span style="color: rgb(0,0,0);"><code>camel-cassandraql</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cql:localhost/keyspace]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cql:localhost/keyspace]]></script>
 </div></div><p><span style="color: rgb(0,0,0);"> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For integrating with <a shape="rect" class="external-link" href="http://cassandra.apache.org/">Apache Cassandra</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="class.html">Class</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[class:className[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[class:className[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Uses the <a shape="rect" href="bean-binding.html">Bean Binding</a> to bind message exchanges to beans in the <a shape="rect" href="registry.html">Registry</a>. Is also used for exposing and invoking POJO (Plain Old Java Objects).</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="chronicle-engine.html">Chronicle Engine</a> /&#160;<code>camel-chronicle</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[chronicle-engine:addresses/path[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[chronicle-engine:addresses/path[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><a shape="rect" class="external-link" href="https://github.com/OpenHFT/Chronicle-Engine" rel="nofollow">Chronicle Engine</a><span> is a<span> high performance, low latency, reactive processing framework.</span></span></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="chunk.html">Chunk</a> /&#160;<code>camel-chunk</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[chunk:templateName[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[chunk:templateName[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Generates a response using a <a shape="rect" class="external-link" href="http://www.x5software.com/chunk/examples/ChunkExample" rel="nofollow">Chunk</a> template</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cmis.html">CMIS</a> /&#160;<code>camel-cmis</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cmis://cmisServerUrl[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cmis://cmisServerUrl[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Uses the <a shape="rect" class="external-link" href="http://chemistry.apache.org/java/opencmis.html">Apache Chemistry</a> client API to interface with CMIS supporting CMS</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cometd.html">Cometd</a> /&#160;<code>camel-cometd</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cometd://hostName:port/channelName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cometd://hostName:port/channelName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Used to deliver messages using the <a shape="rect" class="external-link" href="http://docs.codehaus.org/display/JETTY/Cometd+(aka+Bayeux)" rel="nofollow">jetty cometd implementation</a> of the <a shape="rect" class="external-link" href="http://svn.xantus.org/shortbus/trunk/bayeux/bayeux.html" rel="nofollow">bayeux protocol</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="consul-component.html">Consul</a> /&#160;<code>camel-consul</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[consul:apiEndpoint[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[consul:apiEndpoint[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>For interfacing with an </span><span>&#160;</span><a shape="rect" class="external-link" href="https://www.consul.io/" rel="nofollow">Consul</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="context.html">Context</a> /&#160;<code>camel-context</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[context:camelContextId:localEndpointName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[context:camelContextId:localEndpointName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Used to refer to endpoints within a separate CamelContext to provide a simple <a shape="rect" href="context.html">black box composition</a> approach so that routes can be combined into a CamelContext and then used as a black box component inside other routes in other CamelContexts</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="controlbus-component.html">ControlBus</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[controlbus:command[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[controlbus:command[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="controlbus.html">ControlBus</a> EIP that allows to send messages to <a shape="rect" href="endpoint.html">Endpoint</a>s for managing and monitoring your Camel applications.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="couchdb.html">CouchDB</a> /&#160;<code>camel-couchdb</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[couchdb:hostName[:port]/database[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[couchdb:hostName[:port]/database[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To integrate with <a shape="rect" class="external-link" href="http://couchdb.apache.org/">Apache CouchDB</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="crypto-digital-signatures.html">Crypto (Digital Signatures)</a> /&#160;<code>camel-crypto</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[crypto:&lt;sign|verify&gt;:name[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[crypto:&lt;sign|verify&gt;:name[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Used to sign and verify exchanges using the Signature Service of the Java Cryptographic Extension.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cxf.html">CXF</a> /&#160;<code>camel-cxf</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cxf:&lt;bean:cxfEndpoint|//someAddress&gt;[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cxf:&lt;bean:cxfEndpoint|//someAddress&gt;[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Working with <a shape="rect" href="http://cxf.apache.org/">Apache CXF</a> for web services integration</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cxf-bean-component.html">CXF Bean </a> /&#160;<code>camel-cxf</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cxfbean:serviceBeanRef[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cxfbean:serviceBeanRef[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Proceess the exchange using a JAX WS or JAX RS annotated bean from the registry. Requires less configuration than the above CXF Component</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="cxfrs.html">CXFRS</a> /&#160;<code>camel-cxf</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[cxfrs:&lt;bean:rsEndpoint|//address&gt;[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[cxfrs:&lt;bean:rsEndpoint|//address&gt;[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Working with <a shape="rect" href="http://cxf.apache.org/">Apache CXF</a> for REST services integration</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="dataformat-component.html">DataFormat</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[dataformat:name:&lt;marshal|unmarshal&gt;[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[dataformat:name:&lt;marshal|unmarshal&gt;[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>for working with <a shape="rect" href="data-format.html">Data Format</a>s as if it was a regular Component supporting Endpoints and URIs.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="dataset.html">DataSet</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[dataset:name[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[dataset:name[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For load &amp; soak testing the <a shape="rect" class="external-link" href="http://camel.apache.org/maven/current/camel-core/apidocs/org/apache/camel/component/dataset/DataSet.html">DataSet</a> provides a way to create huge numbers of messages for sending to <a shape="rect" href="components.html">Components</a> or asserting that they are consumed correctly</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="direct.html">Direct</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[direct:someName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[direct:someName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Synchronous call to another endpoint from <strong>same</strong> CamelContext.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="direct-vm.html">Direct-VM</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[direct-vm:someName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[direct-vm:someName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Synchronous call to another endpoint in another CamelContext running in the same JVM.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="dns.html">DNS</a> /&#160;<code>camel-dns</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[dns:operation[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[dns:operation[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To lookup domain information and run DNS queries using <a shape="rect" class="external-link" href="http://www.xbill.org/dnsjava/" rel="nofollow">DNSJava</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="disruptor.html">Disruptor</a> /&#160;<code>camel-disruptor</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[disruptor:someName[?&lt;option&gt;]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[disruptor:someName[?&lt;option&gt;]
 disruptor-vm:someName[?&lt;option&gt;]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>To provide the implementation of <a shape="rect" href="seda.html">SEDA</a> which is based on <a shape="rect" class="external-link" href="https://github.com/LMAX-Exchange/disruptor" rel="nofollow">disruptor</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><span> <a shape="rect" href="docker.html">Docker</a> /&#160;<code>camel-docker</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[docker://[operation]?[options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[docker://[operation]?[options]]]></script>
 </div></div><p><span> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;To communicate with <a shape="rect" class="external-link" href="https://www.docker.com/" rel="nofollow">Docker</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="dozer.html">Dozer</a> /&#160;<code>camel-dozer</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[dozer://name?[options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[dozer://name?[options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;To convert message body using the Dozer type converter library.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="dropbox.html">Dropbox</a> <span> /&#160;<code>camel-dropbox</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[dropbox://[operation]?[options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[dropbox://[operation]?[options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span style="color: rgb(0,0,0);">The&#160;</span> <strong>dropbox:</strong> <span style="color: rgb(0,0,0);">&#160;component allows you to treat&#160;</span> <a shape="rect" class="external-link" href="https://www.dropbox.com/" rel="nofollow">Dropbox</a> <span style="color: rgb(0,0,0);">&#160;remote folders as a producer or consumer of messages.</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ejb.html">EJB</a> /&#160;<code>camel-ejb</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ejb:ejbName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ejb:ejbName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Uses the <a shape="rect" href="bean-binding.html">Bean Binding</a> to bind message exchanges to EJBs. It works like the <a shape="rect" href="bean.html">Bean</a> component but just for accessing EJBs. Supports EJB 3.0 onwards.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ehcache.html">Ehcache</a> /&#160;<code>camel-ehcache</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ehcache://cacheName[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ehcache://cacheName[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>The cache component facilitates creation of caching endpoints and processors using </span><a shape="rect" class="external-link" href="http://ehcache.org/" rel="nofollow">Ehcache 3</a><span> as the cache implementation.</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="elasticsearch.html">ElasticSearch</a> /&#160;<code>camel-elasticsearch</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[elasticsearch://clusterName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[elasticsearch://clusterName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For interfacing with an <a shape="rect" class="external-link" href="http://elasticsearch.org" rel="nofollow">ElasticSearch</a> server.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="etcd.html">Etcd</a> /&#160;<code>camel-etcd</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[etcd:namespace[/path][?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[etcd:namespace[/path][?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>For interfacing with an </span> <a shape="rect" class="external-link" href="https://coreos.com/etcd/" rel="nofollow">Etcd</a> <span> key value store.</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="spring-event.html">Spring Event</a> /&#160;<code>camel-spring</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[spring-event://default
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[spring-event://default
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Working with Spring ApplicationEvents</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="eventadmin.html">EventAdmin</a> /&#160;<code>camel-eventadmin</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[eventadmin:topic[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[eventadmin:topic[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Receiving OSGi EventAdmin events</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="exec.html">Exec</a> /&#160;<code>camel-exec</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[exec://executable[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[exec://executable[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For executing system commands</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="facebook.html">Facebook</a> /&#160;<code>camel-facebook</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[facebook://endpoint[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[facebook://endpoint[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Providing access to all of the Facebook APIs accessible using <a shape="rect" class="external-link" href="http://facebook4j.org/en/index.html" rel="nofollow">Facebook4J</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="file2.html">File</a> /&#160;<code>camel-core</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[file://nameOfFileOrDirectory[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[file://nameOfFileOrDirectory[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Sending messages to a file or polling a file or directory.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="flatpack.html">Flatpack</a> /&#160;<code>camel-flatpack</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[flatpack:[fixed|delim]:configFile[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[flatpack:[fixed|delim]:configFile[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Processing fixed width or delimited files or messages using the <a shape="rect" class="external-link" href="http://flatpack.sourceforge.net" rel="nofollow">FlatPack library</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="flink.html">Flink</a> /&#160;<code>camel-flink</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[flink:dataset[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[flink:dataset[?options]
 flink:datastream[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;Bridges Camel connectors with <a shape="rect" class="external-link" href="http://flink.apache.org/">Apache Flink</a> tasks.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="fop.html">FOP</a> /&#160;<code>camel-fop</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[fop:outputFormat[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[fop:outputFormat[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Renders the message into different output formats using <a shape="rect" class="external-link" href="http://xmlgraphics.apache.org/fop/index.html">Apache FOP</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="freemarker.html">FreeMarker</a> /&#160;<code>camel-freemarker</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[freemarker:templateName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[freemarker:templateName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Generates a response using a <a shape="rect" class="external-link" href="http://freemarker.org/" rel="nofollow">FreeMarker</a> template</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ftp2.html">FTP</a> /&#160;<code>camel-ftp</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ftp:contextPath[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ftp:contextPath[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Sending and receiving files over FTP.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ftp2.html">FTPS</a> /&#160;<code>camel-ftp</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ftps://[username@]hostName[:port]/directoryName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ftps://[username@]hostName[:port]/directoryName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Sending and receiving files over FTP Secure (TLS and SSL).</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ganglia.html">Ganglia</a> /&#160;<code>camel-ganglia</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ganglia:destination:port[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ganglia:destination:port[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Sends values as metrics to the <a shape="rect" class="external-link" href="http://ganglia.info" rel="nofollow">Ganglia</a> performance monitoring system using <a shape="rect" class="external-link" href="https://github.com/ganglia/gmetric4j" rel="nofollow">gmetric4j</a>.&#160; Can be used along with <a shape="rect" class="external-link" href="https://github.com/ganglia/jmxetric" rel="nofollow">JMXetric</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="gauth.html">GAuth</a> / <a shape="rect" href="gae.html">camel-gae</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[gauth://name[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[gauth://name[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Used by web applications to implement an <a shape="rect" class="external-link" href="http://code.google.com/apis/accounts/docs/OAuth.html" rel="nofollow">OAuth</a> consumer. See also <a shape="rect" href="gae.html">Camel Components for Google App Engine</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ghttp.html">GHttp</a> / <a shape="rect" href="gae.html">camel-gae</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ghttp:contextPath[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ghttp:contextPath[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Provides connectivity to the <a shape="rect" class="external-link" href="http://code.google.com/appengine/docs/java/urlfetch/" rel="nofollow">URL fetch service</a> of Google App Engine but can also be used to receive messages from servlets. See also <a shape="rect" href="gae.html">Camel Components for Google App Engine</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="git.html">Git</a> / <a shape="rect" href="git.html">camel-git</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[git:localRepositoryPath[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[git:localRepositoryPath[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports interaction with <a shape="rect" class="external-link" href="https://git-scm.com/" rel="nofollow">Git</a> repositories</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="github.html">Github</a> / <a shape="rect" href="github.html">camel-github</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[github:endpoint[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[github:endpoint[?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports interaction with <a shape="rect" class="external-link" href="https://github.com/" rel="nofollow">Github</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="glogin.html">GLogin</a> / <a shape="rect" href="gae.html">camel-gae</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[glogin://hostname[:port][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[glogin://hostname[:port][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Used by Camel applications outside Google App Engine (GAE) for programmatic login to GAE applications. See also <a shape="rect" href="gae.html">Camel Components for Google App Engine</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="gtask.html">GTask</a> / <a shape="rect" href="gae.html">camel-gae</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[gtask://queue-name[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[gtask://queue-name[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports asynchronous message processing on Google App Engine by using the <a shape="rect" class="external-link" href="http://code.google.com/appengine/docs/java/taskqueue/" rel="nofollow">task queueing service</a> as message queue. See also <a shape="rect" href="gae.html">Camel Components for Google App Engine</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="googlecalendar.html">Google Calendar</a> / <a shape="rect" href="googlecalendar.html">camel-google-calendar</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[google-calendar://endpoint-prefix/endpoint?[options] ]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[google-calendar://endpoint-prefix/endpoint?[options] ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports interaction with <a shape="rect" class="external-link" href="https://developers.google.com/google-apps/calendar/v3/reference/" rel="nofollow">Google Calendar's REST API</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="googledrive.html">Google Drive</a> / <a shape="rect" href="googledrive.html">camel-google-drive</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: java; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[google-drive://endpoint-prefix/endpoint?[options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[google-drive://endpoint-prefix/endpoint?[options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports interaction with <a shape="rect" class="external-link" href="https://developers.google.com/drive/v2/reference/" rel="nofollow">Google Drive's REST API</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="googlemail.html">Google Mail</a> / <a shape="rect" href="googlemail.html">camel-google-mail</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[google-mail://endpoint-prefix/endpoint?[options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[google-mail://endpoint-prefix/endpoint?[options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports interaction with <a shape="rect" class="external-link" href="https://developers.google.com/gmail/api/v1/reference/" rel="nofollow">Google Mail's REST API</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="gmail.html">GMail</a> / <a shape="rect" href="gae.html">camel-gae</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[gmail://user@g[oogle]mail.com[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[gmail://user@g[oogle]mail.com[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports sending of emails via the <a shape="rect" class="external-link" href="http://code.google.com/appengine/docs/java/mail/" rel="nofollow">mail service</a> of Google App Engine. See also <a shape="rect" href="gae.html">Camel Components for Google App Engine</a>.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="gora.html">Gora</a> <span>/&#160;<code>camel-gora</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[gora:instanceName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[gora:instanceName[?options]
 ]]></script>
 </div></div><p><span> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports to work with NoSQL databases using the&#160;<a shape="rect" class="external-link" href="http://gora.apache.org/">Apache Gora</a>&#160;framework.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="gora.html">G</a><a shape="rect" href="grape.html">rape</a>/&#160;<code>camel-grape</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ grape:defaultMavenCoordinates]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ grape:defaultMavenCoordinates]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" class="external-link" href="http://docs.groovy-lang.org/latest/html/documentation/grape.html" rel="nofollow">Grape</a> component allows you to fetch, load and manage additional jars when CamelContext is running.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="geocoder.html">Geocoder</a> /&#160;<code>camel-geocoder</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[geocoder:&lt;address|latlng:latitude,longitude&gt;[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[geocoder:&lt;address|latlng:latitude,longitude&gt;[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Supports looking up geocoders for an address, or reverse lookup geocoders from an address.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="guava-eventbus.html">Google Guava EventBus</a> /&#160;<code>camel-guava-eventbus</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[guava-eventbus:busName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[guava-eventbus:busName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>The <a shape="rect" class="external-link" href="http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/eventbus/package-summary.html" rel="nofollow">Google Guava EventBus</a> allows publish-subscribe-style communication between components without requiring the components to explicitly register with one another (and thus be aware of each other). This component provides integration bridge between Camel and <a shape="rect" class="external-link" href="http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/eventbus/package-summary.html" rel="nofollow">Google Guava EventBus</a> infrastructure.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="hazelcast-component.html">Hazelcast</a> / <a shape="rect" href="hazelcast-component.html">camel-hazelcast</a></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent p
 dl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[hazelcast://[type]:cachename[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[hazelcast://[type]:cachename[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" class="external-link" href="http://www.hazelcast.com" rel="nofollow">Hazelcast</a> is a data grid entirely implemented in Java (single jar). This component supports map, multimap, seda, queue, set, atomic number and simple cluster support.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="hbase.html">HBase</a> /&#160;<code>camel-hbase</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[hbase://table[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[hbase://table[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For reading/writing from/to an <a shape="rect" class="external-link" href="http://hadoop.apache.org/hbase/">HBase</a> store (Hadoop database)</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="hdfs.html">HDFS</a> /&#160;<code>camel-hdfs</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[hdfs://hostName[:port][/path][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[hdfs://hostName[:port][/path][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For reading/writing from/to an <a shape="rect" class="external-link" href="http://hadoop.apache.org/hdfs/">HDFS</a> filesystem using Hadoop 1.x</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="hdfs2.html">HDFS2</a> /&#160;<code>camel-hdfs2</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[hdfs2://hostName[:port][/path][?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[hdfs2://hostName[:port][/path][?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><span>For reading/writing from/to an </span> <a shape="rect" class="external-link" href="http://hadoop.apache.org/hdfs/">HDFS</a> <span> filesystem using Hadoop 2.x</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="hipchat.html">Hipchat</a> /&#160;<code>camel-hipchat</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[hipchat://[host][:port]?options]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[hipchat://[host][:port]?options]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>&#160;For sending/receiving messages to <a shape="rect" class="external-link" href="https://www.hipchat.com" rel="nofollow">Hipchat</a> using v2 API</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="hl7.html">HL7</a> /&#160;<code>camel-hl7</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[mina2:tcp://hostName[:port][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[mina2:tcp://hostName[:port][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with the HL7 MLLP protocol and the HL7 data format using the <a shape="rect" class="external-link" href="http://hl7api.sourceforge.net" rel="nofollow">HAPI library</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="infinispan.html">Infinispan</a> /&#160;<code>camel-infinispan</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[infinispan://cacheName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[infinispan://cacheName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For reading/writing from/to <a shape="rect" class="external-link" href="http://infinispan.org/" rel="nofollow">Infinispan</a> distributed key/value store and data grid</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="http.html">HTTP</a> /&#160;<code>camel-http</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[http:hostName[:port][/resourceUri][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[http:hostName[:port][/resourceUri][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For calling out to external HTTP servers using Apache HTTP Client 3.x</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="http4.html">HTTP4</a> /&#160;<code>camel-http4</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[http4:hostName[:port][/resourceUri][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[http4:hostName[:port][/resourceUri][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For calling out to external HTTP servers using Apache HTTP Client 4.x</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ibatis.html">iBATIS</a> /&#160;<code>camel-ibatis</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ibatis://statementName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ibatis://statementName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Performs a query, poll, insert, update or delete in a relational database using <a shape="rect" class="external-link" href="http://ibatis.apache.org/">Apache iBATIS</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ignite.html">Ignite</a> /&#160;<code>camel-ignite</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ignite:[cache/compute/messaging/...][?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ignite:[cache/compute/messaging/...][?options]]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" class="external-link" href="https://ignite.apache.org/">Apache Ignite</a> <span style="color: rgb(0,0,0);">&#160;In-Memory Data Fabric is a high-performance, integrated and distributed in-memory platform for computing and transacting on large-scale data sets in real-time, orders of magnitude faster than possible with traditional disk-based or flash technologies. It&#160;is designed to deliver uncompromised performance for a wide set of in-memory computing use cases from high performance computing, to the industry most advanced data grid, highly available service grid, and streaming.</span></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="mail.html">IMAP</a> /&#160;<code>camel-mail</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[imap://[username@]hostName[:port][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[imap://[username@]hostName[:port][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Receiving email using <a shape="rect" class="external-link" href="http://en.wikipedia.org/wiki/Internet_Message_Access_Protocol" rel="nofollow">IMAP</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="mail.html">IMAPS</a> /&#160;<code>camel-mail</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[imaps://[username@]hostName[:port][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[imaps://[username@]hostName[:port][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>...</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="irc.html">IRC</a> /&#160;<code>camel-irc</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[irc:[login@]hostName[:port]/#room[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[irc:[login@]hostName[:port]/#room[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For IRC communication</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="ironmq.html">IronMQ</a> <span> /&#160;<code>camel-ironmq</code></span></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[ironmq:queueName[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[ironmq:queueName[?options]]]></script>
 </div></div><p><span> <br clear="none"> </span></p></td><td colspan="1" rowspan="1" class="confluenceTd"><p>For working with <a shape="rect" class="external-link" href="http://www.iron.io/platform/ironmq/" rel="nofollow">IronMQ</a> a elastic and durable hosted message queue as a service.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="javaspace.html">JavaSpace</a> /&#160;<code>camel-javaspace</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[javaspace:jini://hostName[?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[javaspace:jini://hostName[?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Sending and receiving messages through <a shape="rect" class="external-link" href="http://java.sun.com/products/jini/2.1/doc/specs/html/js-spec.html" rel="nofollow">JavaSpace</a></p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="jbpm.html">jBPM</a> /&#160;<code>camel-jbpm</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[jbpm:hostName[:port][/resourceUri][?options]
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[jbpm:hostName[:port][/resourceUri][?options]
 ]]></script>
 </div></div></td><td colspan="1" rowspan="1" class="confluenceTd"><p>Sending messages through kie-remote-client API to jBPM.</p></td></tr><tr><td colspan="1" rowspan="1" class="confluenceTd"><p><a shape="rect" href="jcache.html">jcache</a> /&#160;<code>camel-jcache</code></p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
-<script class="brush: plain; gutter: false; theme: Default" type="syntaxhighlighter"><![CDATA[jcache:cacheName[?options]]]></script>
+<script class="brush: bash; gutter: false; theme: Confluence" type="syntaxhighlighter"><![CDATA[jcache:cacheName[?options]]]></script>

[... 7884 lines stripped ...]