Package uk.nhs.interoperability.payloads.templates

Examples of uk.nhs.interoperability.payloads.templates.DocumentParticipantUniversal


                    .setFamilyName("Weller"));
    return template;
  }
 
  public static DocumentParticipantUniversal createParticipantConsultant() {
    DocumentParticipantUniversal template = new DocumentParticipantUniversal();
   
    template.addId(new PersonID()
                .setType(PersonIDType.LocalPersonID.code)
                .setID("000000000")
                .setAssigningOrganisation("V396AA:Medway PCT"));
    template.setName(new PersonName("Bill Lydon")); // Using unstructured name - not advisable!
    template.setOrgId(new OrgID()
                .setID("V396AA")
                .setType(OrgIDType.ODSOrgID.code));
    template.setOrgName("Medway PCT");
    return template;
  }
View Full Code Here

TOP

Related Classes of uk.nhs.interoperability.payloads.templates.DocumentParticipantUniversal

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.