Package com.ibm.fhir.bucket.client
Interface FhirServerRequest<T>
-
- All Known Implementing Classes:
PostResource
public interface FhirServerRequest<T>
Interface for defining requests which can operate with aFhirClient
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
run(FhirClient client)
Run the request using the givenFhirClient
and return the type T.
-
-
-
Method Detail
-
run
T run(FhirClient client)
Run the request using the givenFhirClient
and return the type T.- Parameters:
client
- used to make the request- Returns:
- response transformed to type T
-
-