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

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

commit 39f66c60477d54b8dd00e095a7ce89fd2a9a8c51
Author: Guillaume Nodet <gno...@gmail.com>
AuthorDate: Fri Jun 12 00:15:06 2020 +0200

    Regen
---
 components/camel-cxf/src/main/docs/cxfrs-component.adoc |  4 ++--
 docs/components/modules/ROOT/pages/cxfrs-component.adoc | 10 +++++-----
 docs/components/modules/others/pages/lra.adoc           |  4 ++--
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/components/camel-cxf/src/main/docs/cxfrs-component.adoc 
b/components/camel-cxf/src/main/docs/cxfrs-component.adoc
index 047854c..4b0f61b 100644
--- a/components/camel-cxf/src/main/docs/cxfrs-component.adoc
+++ b/components/camel-cxf/src/main/docs/cxfrs-component.adoc
@@ -425,8 +425,8 @@ Exchange exchange = template.send("direct://proxy", new 
Processor() {
 // get the response message
 Customer response = (Customer) exchange.getOut().getBody();
 
-assertNotNull(response, "The response should not be null ");
-assertEquals(123, response.getId(), "Get a wrong customer id ");
+assertNotNull(response, "The response should not be null");
+assertEquals(123, response.getId(), "Get a wrong customer id");
 assertEquals("John", response.getName(), "Get a wrong customer name");
 assertEquals(200, exchange.getOut().getHeader(Exchange.HTTP_RESPONSE_CODE), 
"Get a wrong response code");
 assertEquals("value", exchange.getOut().getHeader("key"), "Get a wrong header 
value");
diff --git a/docs/components/modules/ROOT/pages/cxfrs-component.adoc 
b/docs/components/modules/ROOT/pages/cxfrs-component.adoc
index f653771..2a63f1d 100644
--- a/docs/components/modules/ROOT/pages/cxfrs-component.adoc
+++ b/docs/components/modules/ROOT/pages/cxfrs-component.adoc
@@ -427,11 +427,11 @@ Exchange exchange = template.send("direct://proxy", new 
Processor() {
 // get the response message
 Customer response = (Customer) exchange.getOut().getBody();
 
-assertNotNull("The response should not be null ", response);
-assertEquals("Get a wrong customer id ", 123, response.getId());
-assertEquals("Get a wrong customer name", "John", response.getName());
-assertEquals("Get a wrong response code", 200, 
exchange.getOut().getHeader(Exchange.HTTP_RESPONSE_CODE));
-assertEquals("Get a wrong header value", "value", 
exchange.getOut().getHeader("key"));
+assertNotNull(response, "The response should not be null");
+assertEquals(123, response.getId(), "Get a wrong customer id");
+assertEquals("John", response.getName(), "Get a wrong customer name");
+assertEquals(200, exchange.getOut().getHeader(Exchange.HTTP_RESPONSE_CODE), 
"Get a wrong response code");
+assertEquals("value", exchange.getOut().getHeader("key"), "Get a wrong header 
value");
 ----
 
 The http://cxf.apache.org/docs/jax-rs.html[CXF JAXRS front end] also
diff --git a/docs/components/modules/others/pages/lra.adoc 
b/docs/components/modules/others/pages/lra.adoc
index f74bc88..9b0a068 100644
--- a/docs/components/modules/others/pages/lra.adoc
+++ b/docs/components/modules/others/pages/lra.adoc
@@ -6,11 +6,11 @@
 :artifactId: camel-lra
 :description: Camel saga binding for Long-Running-Action framework
 :since: 2.21
-:supportLevel: Stable
+:supportLevel: Preview
 
 *Since Camel {since}*
 
-The LRA module provides bindings of the Saga EIP with any 
https://github.com/eclipse/microprofile-sandbox/tree/master/proposals/0009-LRA[MicroProfile
 compatible LRA Coordinator (sandbox)].
+The LRA module provides bindings of the Saga EIP with any 
https://github.com/eclipse/microprofile-lra[MicroProfile compatible LRA 
Coordinator].
 
 Maven users will need to add the following dependency to their `pom.xml`
 for this component:

Reply via email to