You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2019/10/25 06:29:22 UTC

[camel-quarkus] branch master updated: chore: Make fhir extension doc consistent with other extensions doc

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 01dd1a5  chore: Make fhir extension doc consistent with other extensions doc
01dd1a5 is described below

commit 01dd1a536f028a5154103828d143784cfd5cd8da
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Oct 25 07:28:25 2019 +0100

    chore: Make fhir extension doc consistent with other extensions doc
---
 docs/modules/ROOT/pages/extensions/fhir.adoc | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

diff --git a/docs/modules/ROOT/pages/extensions/fhir.adoc b/docs/modules/ROOT/pages/extensions/fhir.adoc
index d6aac97..f1eaab5 100644
--- a/docs/modules/ROOT/pages/extensions/fhir.adoc
+++ b/docs/modules/ROOT/pages/extensions/fhir.adoc
@@ -1,7 +1,7 @@
 [[fhir]]
 = FHIR Extension
 
-*Available as of Camel Quarkus version 0.21*
+*Since Camel Quarkus 0.3.0*
 
 The FHIR extension integrates with the
 http://hapifhir.io/[HAPI-FHIR] library which is an open-source implementation of the
@@ -25,10 +25,25 @@ The extension supports the Camel https://camel.apache.org/components/latest/fhir
 
 The https://hapifhir.io/download.html[hapi-fhir] library, on which camel-fhir depends on, heavily uses reflection which affects performance in Quarkus (memory footprint, build time, CPU resources etc...). The following options are provided to improve on this:
 
-* `quarkus.camel.fhir.enable-dstu2`: enables dstu2 resources, default `true`
-* `quarkus.camel.fhir.enable-dstu3`: enables dstu3 resources, default `true`
-* `quarkus.camel.fhir.enable-r4`: : enables r4 resources, default `true`
+[cols="80,.^10,.^10"]
+|===
+|Configuration property |Type |Default
 
-which can be configured within the `application.properties` configuration file.
+|`quarkus.camel.fhir.enable-dstu2`
 
-Enjoy !
\ No newline at end of file
+ enables dstu2 resources
+|boolean
+|`true`
+
+|`quarkus.camel.fhir.enable-dstu3`
+
+ enables dstu3 resources
+|boolean
+|`true`
+
+|`quarkus.camel.fhir.enable-r4`
+
+ enables r4 resources
+|boolean
+|`true`
+|===