We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd91417 commit 0490795Copy full SHA for 0490795
hapi-fhir-base/src/main/java/ca/uhn/fhir/rest/gclient/IRawHttp.java
@@ -11,5 +11,12 @@
11
* @since 8.6.0
12
*/
13
public interface IRawHttp {
14
+ /**
15
+ * Creates a GET request to the specified URL.
16
+ *
17
+ * @param theUrl The URL to send the GET request to. Can be absolute or relative
18
+ * to the client's base URL.
19
+ * @return A builder for configuring and executing the HTTP GET request
20
+ */
21
IClientHttpExecutable<IClientHttpExecutable<?, IEntityResult>, IEntityResult> get(String theUrl);
22
}
0 commit comments