
Package ca.uhn.fhir.rest.gclient
Interface IRawHttp
public interface IRawHttp
Interface for making raw HTTP requests using the GenericClient infrastructure.
This allows non-FHIR HTTP calls to benefit from the same interceptor chain,
authentication, and configuration as regular FHIR operations.
Particularly useful for operations like polling $export status endpoints or calling external services that return non-FHIR content.
- Since:
- 8.6.0
-
Method Summary
Modifier and TypeMethodDescriptionCreates a GET request to the specified URL.
-
Method Details
-
get
Creates a GET request to the specified URL.- Parameters:
theUrl
- The URL to send the GET request to. Can be absolute or relative to the client's base URL.- Returns:
- A builder for configuring and executing the HTTP GET request
-