Package uk.nhs.interoperability.payloads.fhir.commontypes

Examples of uk.nhs.interoperability.payloads.fhir.commontypes.Address


    // PatientRole:
    resource.addPatientID(new PatientID()
                  .setPatientID("993254128")
                  .setPatientIDType(PatientIDType.UnverifiedNHSNumber.code));   
   
    resource.addAddress(new Address()
                  .addAddressLine("17, County Court")
                  .addAddressLine("Woodtown")
                  .addAddressLine("Medway")
                  .setPostcode("ME5 FS3")
                  .setAddressUse(FHIRAddressType.home.code));
   
    resource.addAddress(new Address()
                  .addAddressLine("Hightown Retirement Home")
                  .addAddressLine("2, Brancaster Road")
                  .addAddressLine("Medway")
                  .addAddressLine("Kent")
                  .setPostcode("ME5 FL5")
View Full Code Here

TOP

Related Classes of uk.nhs.interoperability.payloads.fhir.commontypes.Address

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.