File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
package ca .uhn .fhir .rest .gclient ;
2
2
3
3
/**
4
- * Interface to make non-FHIR requests using the GenericClient plumbing.
5
- * Useful for the interceptor infrastructure when dealing with thinks like $export poll locations
6
- * which are not FHIR payloads.
4
+ * Interface for making raw HTTP requests using the GenericClient infrastructure.
5
+ * This allows non-FHIR HTTP calls to benefit from the same interceptor chain,
6
+ * authentication, and configuration as regular FHIR operations.
7
+ *
8
+ * <p>Particularly useful for operations like polling $export status endpoints
9
+ * or calling external services that return non-FHIR content.</p>
10
+ *
11
+ * @since 8.6.0
7
12
*/
8
13
public interface IRawHttp {
9
14
IClientHttpExecutable <IClientHttpExecutable <?, IEntityResult >, IEntityResult > get (String theUrl );
You can’t perform that action at this time.
0 commit comments