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