Created
December 6, 2018 15:30
-
-
Save KevinMayfield/f214f311038b83e33b811f0af22ffe67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IGenericClient clientODS = ctxFHIR.newRestfulGenericClient("https://directory.spineservices.nhs.uk/STU3/"); | |
clientODS.setEncoding(EncodingEnum.XML); | |
Organization organization = clientODS | |
.read() | |
.resource(Organization.class) | |
.withId("RR8").execute(); | |
organization.setId(UUID.randomUUID().toString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment