This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 9ae86a0e6b76 chore(components): remove fhir unused code (#20498)
9ae86a0e6b76 is described below
commit 9ae86a0e6b76efa042e8d7589ecb4004352a4fcf
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Thu Dec 18 13:22:21 2025 +0100
chore(components): remove fhir unused code (#20498)
---
.../component/fhir/AbstractFhirTestSupport.java | 4 ---
.../camel/component/fhir/UrlFetcherTest.java | 38 ----------------------
2 files changed, 42 deletions(-)
diff --git
a/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/AbstractFhirTestSupport.java
b/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/AbstractFhirTestSupport.java
index fdfa2ecd2f7a..098865fca1cf 100644
---
a/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/AbstractFhirTestSupport.java
+++
b/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/AbstractFhirTestSupport.java
@@ -64,10 +64,6 @@ public abstract class AbstractFhirTestSupport extends
CamelTestSupport {
}
}
- private void deletePatient() {
-
fhirClient.delete().resourceConditionalByUrl("Patient?given=Vincent&family=Freeman").execute();
- }
-
private void createPatient() {
this.patient = new Patient().addName(new
HumanName().addGiven("Vincent").setFamily("Freeman")).setActive(false);
this.patient.setId(fhirClient.create().resource(patient).execute().getId());
diff --git
a/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/UrlFetcherTest.java
b/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/UrlFetcherTest.java
deleted file mode 100644
index bab362800585..000000000000
---
a/components/camel-fhir/camel-fhir-component/src/test/java/org/apache/camel/component/fhir/UrlFetcherTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.component.fhir;
-
-import ca.uhn.fhir.context.FhirContext;
-import ca.uhn.fhir.rest.client.api.IGenericClient;
-import ca.uhn.fhir.rest.client.interceptor.LoggingInterceptor;
-import org.hl7.fhir.r4.model.Patient;
-
-/**
- * Helper class to generate search URLs based on HAPI-FHIR's search API
- */
-public class UrlFetcherTest {
-
- public void getUrlTest() {
- // Create a client to talk to your favorite test server
- FhirContext ctx = FhirContext.forR4();
- IGenericClient client =
ctx.newRestfulGenericClient("http://localhost:8080/hapi-fhir-jpaserver-example/baseR4");
- // URL will be logged in console, see log4j2.properties
- client.registerInterceptor(new LoggingInterceptor(true));
-
-
client.search().forResource("Patient").where(Patient.IDENTIFIER.exactly().identifier("this/is/my/id")).execute();
- }
-}