FHIR

Since Camel Quarkus0.3.0 JVMsupported Nativesupported

Exchange information in the healthcare domain using the FHIR (Fast Healthcare Interoperability Resources) standard. Marshall and unmarshall FHIR objects to/from JSON. Marshall and unmarshall FHIR objects to/from XML.

What’s inside

Please refer to the above links for usage and configuration details.

Maven coordinates

<dependency>
    <groupId>org.apache.camel.quarkus</groupId>
    <artifactId>camel-quarkus-fhir</artifactId>
</dependency>

Check the User guide for more information about writing Camel Quarkus applications.

SSL in native mode

This extension auto-enables SSL support in native mode. Hence you do not need to add quarkus.ssl.native=true to your application.properties yourself. See also Quarkus SSL guide.

Additional Camel Quarkus configuration

The 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:

Configuration property Type Default

quarkus.camel.fhir.enable-dstu2

Enable FHIR DSTU2 Specs.

boolean

true

quarkus.camel.fhir.enable-dstu3

Enable FHIR DSTU3 Specs.

boolean

true

quarkus.camel.fhir.enable-r4

Enable FHIR R4 Specs.

boolean

true

quarkus.camel.fhir.enable-r5

Enable FHIR R5 Specs.

boolean

true

Configuration property fixed at build time. All other configuration properties are overridable at runtime.