Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1E6A8C3DD for ; Wed, 16 May 2012 14:21:27 +0000 (UTC) Received: (qmail 18924 invoked by uid 500); 16 May 2012 14:21:27 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 18877 invoked by uid 500); 16 May 2012 14:21:27 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 18867 invoked by uid 99); 16 May 2012 14:21:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2012 14:21:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 May 2012 14:21:23 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CD48A238890B for ; Wed, 16 May 2012 14:21:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r817929 - in /websites/production/camel/content: bindy.html book-dataformat-appendix.html book-in-one-page.html cache/main.pageCache Date: Wed, 16 May 2012 14:21:01 -0000 To: commits@camel.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120516142101.CD48A238890B@eris.apache.org> Author: buildbot Date: Wed May 16 14:21:01 2012 New Revision: 817929 Log: Production update by buildbot for camel Modified: websites/production/camel/content/bindy.html websites/production/camel/content/book-dataformat-appendix.html websites/production/camel/content/book-in-one-page.html websites/production/camel/content/cache/main.pageCache Modified: websites/production/camel/content/bindy.html ============================================================================== --- websites/production/camel/content/bindy.html (original) +++ websites/production/camel/content/bindy.html Wed May 16 14:21:01 2012 @@ -1022,11 +1022,11 @@ Claus,Ibsen,Camel in Action 4,2014,35

The next step consists in instantiating the DataFormat bindy class associated with this record type and providing Java package name(s) as parameter.

-

For example the following uses the class CsvBindyFormat (who correspond to the class associated with the CSV record type) which is configured with "com.acme.model"
+

For example the following uses the class BindyCsvDataFormat (who correspond to the class associated with the CSV record type) which is configured with "com.acme.model"
package name to initialize the model objects configured in this package.

-DataFormat bindy = new CsvBindyDataFormat("com.acme.model");
+DataFormat bindy = new BindyCsvDataFormat("com.acme.model");
 
Modified: websites/production/camel/content/book-dataformat-appendix.html ============================================================================== --- websites/production/camel/content/book-dataformat-appendix.html (original) +++ websites/production/camel/content/book-dataformat-appendix.html Wed May 16 14:21:01 2012 @@ -375,31 +375,7 @@ You can setup which encoding to use when

Using a custom NamespacePrefixMapper

Starting with Camel 2.9.3, you can use a custom com.sun.xml.bind.marshaller.NamespacePrefixMapper to define the namespace prefix for a given namespace uri. This feature is may only available in the JAXB RI!

-
-
<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
-  <route>
-    <from uri="direct:marshall1"/>
-    <marshal>
-      <jaxb prettyPrint="true" contextPath="org.apache.camel.example" nameSpacePrefixMapper="org.apache.camel.jaxb.MyNameSpacePrefixMapper"/>
-    </marshal>
-    <to uri="mock:marshall"/>
-  </route>
-
-  <route>
-    <from uri="direct:marshall2"/>
-    <marshal ref="myJaxb"/>
-    <to uri="mock:marshall"/>
-  </route>
-</camelContext>
-
-<bean id="myJaxb" class="org.apache.camel.converter.jaxb.JaxbDataFormat">
-  <property name="contextPath" value="org.apache.camel.example"/>
-  <property name="nameSpacePrefixMapper">
-      <bean class="org.apache.camel.jaxb.MyNameSpacePrefixMapper" />
-  </property>
-</bean>
-
-
+
Error formatting macro: snippet: java.lang.IndexOutOfBoundsException: Index: 20, Size: 20

Dependencies

@@ -2115,11 +2091,11 @@ Claus,Ibsen,Camel in Action 4,2014,35

The next step consists in instantiating the DataFormat bindy class associated with this record type and providing Java package name(s) as parameter.

-

For example the following uses the class CsvBindyFormat (who correspond to the class associated with the CSV record type) which is configured with "com.acme.model"
+

For example the following uses the class BindyCsvDataFormat (who correspond to the class associated with the CSV record type) which is configured with "com.acme.model"
package name to initialize the model objects configured in this package.

-DataFormat bindy = new CsvBindyDataFormat("com.acme.model");
+DataFormat bindy = new BindyCsvDataFormat("com.acme.model");
 
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 Wed May 16 14:21:01 2012 @@ -12915,11 +12915,11 @@ Claus,Ibsen,Camel in Action 4,2014,35

The next step consists in instantiating the DataFormat bindy class associated with this record type and providing Java package name(s) as parameter.

-

For example the following uses the class CsvBindyFormat (who correspond to the class associated with the CSV record type) which is configured with "com.acme.model"
+

For example the following uses the class BindyCsvDataFormat (who correspond to the class associated with the CSV record type) which is configured with "com.acme.model"
package name to initialize the model objects configured in this package.

-DataFormat bindy = new CsvBindyDataFormat("com.acme.model");
+DataFormat bindy = new BindyCsvDataFormat("com.acme.model");
 
Modified: websites/production/camel/content/cache/main.pageCache ============================================================================== Binary files - no diff available.