Interface FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder
-
- All Superinterfaces:
org.apache.camel.builder.EndpointConsumerBuilder,org.apache.camel.EndpointConsumerResolver
- All Known Subinterfaces:
FhirEndpointBuilderFactory.AdvancedFhirEndpointBuilder
- Enclosing interface:
- FhirEndpointBuilderFactory
public static interface FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder extends org.apache.camel.builder.EndpointConsumerBuilderAdvanced builder for endpoint consumers for the FHIR component.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default FhirEndpointBuilderFactory.FhirEndpointConsumerBuilderbasic()default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderclient(ca.uhn.fhir.rest.client.api.IGenericClient client)To use the custom client.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderclient(String client)To use the custom client.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderclientFactory(ca.uhn.fhir.rest.client.api.IRestfulClientFactory clientFactory)To use the custom client factory.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderclientFactory(String clientFactory)To use the custom client factory.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildercompress(boolean compress)Compresses outgoing (POST/PUT) contents to the GZIP format.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildercompress(String compress)Compresses outgoing (POST/PUT) contents to the GZIP format.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderconnectionTimeout(Integer connectionTimeout)How long to try and establish the initial TCP connection (in ms).default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderconnectionTimeout(String connectionTimeout)How long to try and establish the initial TCP connection (in ms).default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderdeferModelScanning(boolean deferModelScanning)When this option is set, model classes will not be scanned for children until the child list for the given type is actually accessed.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderdeferModelScanning(String deferModelScanning)When this option is set, model classes will not be scanned for children until the child list for the given type is actually accessed.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderexceptionHandler(String exceptionHandler)To let the consumer use a custom ExceptionHandler.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderexceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)To let the consumer use a custom ExceptionHandler.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderexchangePattern(String exchangePattern)Sets the exchange pattern when the consumer creates an exchange.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderexchangePattern(org.apache.camel.ExchangePattern exchangePattern)Sets the exchange pattern when the consumer creates an exchange.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderfhirContext(ca.uhn.fhir.context.FhirContext fhirContext)FhirContext is an expensive object to create.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderfhirContext(String fhirContext)FhirContext is an expensive object to create.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderforceConformanceCheck(boolean forceConformanceCheck)Force conformance check.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderforceConformanceCheck(String forceConformanceCheck)Force conformance check.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderpollStrategy(String pollStrategy)A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilderpollStrategy(org.apache.camel.spi.PollingConsumerPollStrategy pollStrategy)A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildersessionCookie(String sessionCookie)HTTP session cookie to add to every request.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildersocketTimeout(Integer socketTimeout)How long to block for individual read/write operations (in ms).default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildersocketTimeout(String socketTimeout)How long to block for individual read/write operations (in ms).default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildersummary(String summary)Request that the server modify the response using the _summary param.default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuildervalidationMode(String validationMode)When should Camel validate the FHIR Server's conformance statement.
-
-
-
Method Detail
-
basic
default FhirEndpointBuilderFactory.FhirEndpointConsumerBuilder basic()
-
exceptionHandler
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder exceptionHandler(org.apache.camel.spi.ExceptionHandler exceptionHandler)
To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option is a: <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)- Parameters:
exceptionHandler- the value to set- Returns:
- the dsl builder
-
exceptionHandler
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder exceptionHandler(String exceptionHandler)
To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this option is not in use. By default the consumer will deal with exceptions, that will be logged at WARN or ERROR level and ignored. The option will be converted to a <code>org.apache.camel.spi.ExceptionHandler</code> type. Group: consumer (advanced)- Parameters:
exceptionHandler- the value to set- Returns:
- the dsl builder
-
exchangePattern
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder exchangePattern(org.apache.camel.ExchangePattern exchangePattern)
Sets the exchange pattern when the consumer creates an exchange. The option is a: <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)- Parameters:
exchangePattern- the value to set- Returns:
- the dsl builder
-
exchangePattern
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder exchangePattern(String exchangePattern)
Sets the exchange pattern when the consumer creates an exchange. The option will be converted to a <code>org.apache.camel.ExchangePattern</code> type. Group: consumer (advanced)- Parameters:
exchangePattern- the value to set- Returns:
- the dsl builder
-
pollStrategy
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder pollStrategy(org.apache.camel.spi.PollingConsumerPollStrategy pollStrategy)
A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel. The option is a: <code>org.apache.camel.spi.PollingConsumerPollStrategy</code> type. Group: consumer (advanced)- Parameters:
pollStrategy- the value to set- Returns:
- the dsl builder
-
pollStrategy
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder pollStrategy(String pollStrategy)
A pluggable org.apache.camel.PollingConsumerPollingStrategy allowing you to provide your custom implementation to control error handling usually occurred during the poll operation before an Exchange have been created and being routed in Camel. The option will be converted to a <code>org.apache.camel.spi.PollingConsumerPollStrategy</code> type. Group: consumer (advanced)- Parameters:
pollStrategy- the value to set- Returns:
- the dsl builder
-
client
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder client(ca.uhn.fhir.rest.client.api.IGenericClient client)
To use the custom client. The option is a: <code>ca.uhn.fhir.rest.client.api.IGenericClient</code> type. Group: advanced- Parameters:
client- the value to set- Returns:
- the dsl builder
-
client
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder client(String client)
To use the custom client. The option will be converted to a <code>ca.uhn.fhir.rest.client.api.IGenericClient</code> type. Group: advanced- Parameters:
client- the value to set- Returns:
- the dsl builder
-
clientFactory
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder clientFactory(ca.uhn.fhir.rest.client.api.IRestfulClientFactory clientFactory)
To use the custom client factory. The option is a: <code>ca.uhn.fhir.rest.client.api.IRestfulClientFactory</code> type. Group: advanced- Parameters:
clientFactory- the value to set- Returns:
- the dsl builder
-
clientFactory
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder clientFactory(String clientFactory)
To use the custom client factory. The option will be converted to a <code>ca.uhn.fhir.rest.client.api.IRestfulClientFactory</code> type. Group: advanced- Parameters:
clientFactory- the value to set- Returns:
- the dsl builder
-
compress
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder compress(boolean compress)
Compresses outgoing (POST/PUT) contents to the GZIP format. The option is a: <code>boolean</code> type. Default: false Group: advanced- Parameters:
compress- the value to set- Returns:
- the dsl builder
-
compress
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder compress(String compress)
Compresses outgoing (POST/PUT) contents to the GZIP format. The option will be converted to a <code>boolean</code> type. Default: false Group: advanced- Parameters:
compress- the value to set- Returns:
- the dsl builder
-
connectionTimeout
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder connectionTimeout(Integer connectionTimeout)
How long to try and establish the initial TCP connection (in ms). The option is a: <code>java.lang.Integer</code> type. Default: 10000 Group: advanced- Parameters:
connectionTimeout- the value to set- Returns:
- the dsl builder
-
connectionTimeout
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder connectionTimeout(String connectionTimeout)
How long to try and establish the initial TCP connection (in ms). The option will be converted to a <code>java.lang.Integer</code> type. Default: 10000 Group: advanced- Parameters:
connectionTimeout- the value to set- Returns:
- the dsl builder
-
deferModelScanning
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder deferModelScanning(boolean deferModelScanning)
When this option is set, model classes will not be scanned for children until the child list for the given type is actually accessed. The option is a: <code>boolean</code> type. Default: false Group: advanced- Parameters:
deferModelScanning- the value to set- Returns:
- the dsl builder
-
deferModelScanning
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder deferModelScanning(String deferModelScanning)
When this option is set, model classes will not be scanned for children until the child list for the given type is actually accessed. The option will be converted to a <code>boolean</code> type. Default: false Group: advanced- Parameters:
deferModelScanning- the value to set- Returns:
- the dsl builder
-
fhirContext
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder fhirContext(ca.uhn.fhir.context.FhirContext fhirContext)
FhirContext is an expensive object to create. To avoid creating multiple instances, it can be set directly. The option is a: <code>ca.uhn.fhir.context.FhirContext</code> type. Group: advanced- Parameters:
fhirContext- the value to set- Returns:
- the dsl builder
-
fhirContext
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder fhirContext(String fhirContext)
FhirContext is an expensive object to create. To avoid creating multiple instances, it can be set directly. The option will be converted to a <code>ca.uhn.fhir.context.FhirContext</code> type. Group: advanced- Parameters:
fhirContext- the value to set- Returns:
- the dsl builder
-
forceConformanceCheck
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder forceConformanceCheck(boolean forceConformanceCheck)
Force conformance check. The option is a: <code>boolean</code> type. Default: false Group: advanced- Parameters:
forceConformanceCheck- the value to set- Returns:
- the dsl builder
-
forceConformanceCheck
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder forceConformanceCheck(String forceConformanceCheck)
Force conformance check. The option will be converted to a <code>boolean</code> type. Default: false Group: advanced- Parameters:
forceConformanceCheck- the value to set- Returns:
- the dsl builder
-
sessionCookie
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder sessionCookie(String sessionCookie)
HTTP session cookie to add to every request. The option is a: <code>java.lang.String</code> type. Group: advanced- Parameters:
sessionCookie- the value to set- Returns:
- the dsl builder
-
socketTimeout
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder socketTimeout(Integer socketTimeout)
How long to block for individual read/write operations (in ms). The option is a: <code>java.lang.Integer</code> type. Default: 10000 Group: advanced- Parameters:
socketTimeout- the value to set- Returns:
- the dsl builder
-
socketTimeout
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder socketTimeout(String socketTimeout)
How long to block for individual read/write operations (in ms). The option will be converted to a <code>java.lang.Integer</code> type. Default: 10000 Group: advanced- Parameters:
socketTimeout- the value to set- Returns:
- the dsl builder
-
summary
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder summary(String summary)
Request that the server modify the response using the _summary param. The option is a: <code>java.lang.String</code> type. Group: advanced- Parameters:
summary- the value to set- Returns:
- the dsl builder
-
validationMode
default FhirEndpointBuilderFactory.AdvancedFhirEndpointConsumerBuilder validationMode(String validationMode)
When should Camel validate the FHIR Server's conformance statement. The option is a: <code>java.lang.String</code> type. Default: ONCE Group: advanced- Parameters:
validationMode- the value to set- Returns:
- the dsl builder
-
-