This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-spring-boot-4.14.x in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit 606ed69926d091f6790d3e04a254146b0641c836 Author: Claus Ibsen <[email protected]> AuthorDate: Sat Aug 8 14:56:44 2026 +0200 Fix compilation error in FhirCustomClientConfigurationIT Add missing rawHttpRequest() method required by IGenericClient interface Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]> --- .../camel/component/fhir/FhirCustomClientConfigurationIT.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirCustomClientConfigurationIT.java b/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirCustomClientConfigurationIT.java index 566c6f6cf78..f590bf05a88 100644 --- a/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirCustomClientConfigurationIT.java +++ b/components-starter/camel-fhir-starter/src/test/java/org/apache/camel/component/fhir/FhirCustomClientConfigurationIT.java @@ -42,6 +42,7 @@ import ca.uhn.fhir.rest.gclient.IHistory; import ca.uhn.fhir.rest.gclient.IMeta; import ca.uhn.fhir.rest.gclient.IOperation; import ca.uhn.fhir.rest.gclient.IPatch; +import ca.uhn.fhir.rest.gclient.IRawHttp; import ca.uhn.fhir.rest.gclient.IRead; import ca.uhn.fhir.rest.gclient.ITransaction; import ca.uhn.fhir.rest.gclient.IUntypedQuery; @@ -298,6 +299,11 @@ public class FhirCustomClientConfigurationIT extends AbstractFhirTestSupport { return null; } + @Override + public IRawHttp rawHttpRequest() { + return null; + } + @Override public <T extends IBaseResource> T read(Class<T> theType, String theId) { return null;
