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 2013/08/30 22:19:11 UTC

svn commit: r876749 - in /websites/production/camel/content: cache/main.pageCache salesforce.html

Author: buildbot
Date: Fri Aug 30 20:19:10 2013
New Revision: 876749

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/salesforce.html

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

Modified: websites/production/camel/content/salesforce.html
==============================================================================
--- websites/production/camel/content/salesforce.html (original)
+++ websites/production/camel/content/salesforce.html Fri Aug 30 20:19:10 2013
@@ -109,7 +109,7 @@ There is a companion maven plugin Camel 
 
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-force:topic?options
+salesforce:topic?options
 ]]></script>
 </div></div>
 
@@ -131,7 +131,7 @@ The request message body should be an SO
 The response message will either be <tt>null</tt> if an existing record was updated, or <tt>CreateSObjectResult</tt> with an id of the new record, or a list of errors while creating the new object.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-	...to("force:upsertSObject?sObjectIdName=Name")...
+	...to("salesforce:upsertSObject?sObjectIdName=Name")...
 ]]></script>
 </div></div>
 
@@ -149,7 +149,7 @@ and the response may also be saved to a 
 The in message must contain a body that can be converted into an <tt>InputStream</tt> (usually UTF-8 CSV or XML content from a file, etc.) and header fields 'jobId' for the Job and 'contentType' for the Job content type, which can be XML, CSV, ZIP_XML or ZIP_CSV. The put message body will contain <tt>BatchInfo</tt> on success, or throw a <tt>SalesforceException</tt> on error.</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-	...to("force:createBatchJob")..
+	...to("salesforce:createBatchJob")..
 ]]></script>
 </div></div>
 
@@ -160,14 +160,14 @@ The in message must contain a body that 
 <p>To create and subscribe to a topic</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-	from("force:CamelTestTopic?notifyForFields=ALL&amp;notifyForOperations=ALL&amp;sObjectName=Merchandise__c&amp;updateTopic=true&amp;sObjectQuery=SELECT Id, Name FROM Merchandise__c")...
+	from("salesforce:CamelTestTopic?notifyForFields=ALL&amp;notifyForOperations=ALL&amp;sObjectName=Merchandise__c&amp;updateTopic=true&amp;sObjectQuery=SELECT Id, Name FROM Merchandise__c")...
 ]]></script>
 </div></div>
 
 <p>To subscribe to an existing topic</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
 <script class="theme: Default; brush: java; gutter: false" type="syntaxhighlighter"><![CDATA[
-	from("force:CamelTestTopic&amp;sObjectName=Merchandise__c")...
+	from("salesforce:CamelTestTopic&amp;sObjectName=Merchandise__c")...
 ]]></script>
 </div></div>