This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new b96361f  Regen
b96361f is described below

commit b96361f6dd305002f0ba490ae1f4bc9da58c4833
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Fri Jun 19 15:07:11 2020 +0200

    Regen
---
 .../resources/org/apache/camel/catalog/docs/browse-component.adoc   | 2 +-
 .../resources/org/apache/camel/catalog/docs/servlet-component.adoc  | 6 +++---
 .../resources/org/apache/camel/catalog/docs/undertow-component.adoc | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/browse-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/browse-component.adoc
index 2c44a46..4752ed1 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/browse-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/browse-component.adoc
@@ -97,7 +97,7 @@ We can now inspect the received exchanges from within the 
Java code:
 ----
 private CamelContext context;
 
-public void inspectRecievedOrders() {
+public void inspectReceivedOrders() {
     BrowsableEndpoint browse = context.getEndpoint("browse:orderReceived", 
BrowsableEndpoint.class);
     List<Exchange> exchanges = browse.getExchanges();
 
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/servlet-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/servlet-component.adoc
index e739d20..52d4894 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/servlet-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/servlet-component.adoc
@@ -245,12 +245,12 @@ from("servlet:hello?matchOnUriPrefix=true").process(new 
Processor() {
         String path = exchange.getIn().getHeader(Exchange.HTTP_URI, 
String.class);
         path = path.substring(path.lastIndexOf("/"));
 
-        assertEquals("Get a wrong content type", CONTENT_TYPE, contentType);
+        assertEquals(CONTENT_TYPE, contentType, "Get a wrong content type");
         // assert camel http header
         String charsetEncoding = 
exchange.getIn().getHeader(Exchange.HTTP_CHARACTER_ENCODING, String.class);
-        assertEquals("Get a wrong charset name from the message heaer", 
"UTF-8", charsetEncoding);
+        assertEquals(charsetEncoding, "Get a wrong charset name from the 
message heaer", "UTF-8");
         // assert exchange charset
-        assertEquals("Get a wrong charset naem from the exchange property", 
"UTF-8", exchange.getProperty(Exchange.CHARSET_NAME));
+        assertEquals(exchange.getProperty(Exchange.CHARSET_NAME), "Get a wrong 
charset naem from the exchange property", "UTF-8");
         exchange.getOut().setHeader(Exchange.CONTENT_TYPE, contentType + "; 
charset=UTF-8");
         exchange.getOut().setHeader("PATH", path);
         exchange.getOut().setBody("<b>Hello World</b>");
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/undertow-component.adoc
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/undertow-component.adoc
index 20db802..920dc1d 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/undertow-component.adoc
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/docs/undertow-component.adoc
@@ -117,7 +117,7 @@ with the following path and query parameters:
 | *tcpNoDelay* (producer) | Setting to improve TCP protocol performance | true 
| Boolean
 | *throwExceptionOnFailure* (producer) | Option to disable throwing the 
HttpOperationFailedException in case of failed responses from the remote 
server. This allows you to get all responses regardless of the HTTP status 
code. | true | Boolean
 | *transferException* (producer) | If enabled and an Exchange failed 
processing on the consumer side and if the caused Exception was send back 
serialized in the response as a application/x-java-serialized-object content 
type. On the producer side the exception will be deserialized and thrown as is 
instead of the HttpOperationFailedException. The caused exception is required 
to be serialized. This is by default turned off. If you enable this then be 
aware that Java will deserialize the in [...]
-| *accessLogReceiver* (advanced) | Which Undertow AccessLogReciever should be 
used Will use JBossLoggingAccessLogReceiver if not specifid |  | 
AccessLogReceiver
+| *accessLogReceiver* (advanced) | Which Undertow AccessLogReceiver should be 
used Will use JBossLoggingAccessLogReceiver if not specifid |  | 
AccessLogReceiver
 | *basicPropertyBinding* (advanced) | Whether the endpoint should use basic 
property binding (Camel 2.x) or the newer property binding with additional 
capabilities | false | boolean
 | *headerFilterStrategy* (advanced) | To use a custom HeaderFilterStrategy to 
filter header to and from Camel message. |  | HeaderFilterStrategy
 | *synchronous* (advanced) | Sets whether synchronous processing should be 
strictly used, or Camel is allowed to use asynchronous processing (if 
supported). | false | boolean

Reply via email to