Package uk.nhs.interoperability.payloads.templates

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


    template.setOrganisationName("Medway NHS Foundation Trust");
    return template;
  }
 
  public static PersonUniversal createDataEnterer() {
    PersonUniversal template = new PersonUniversal();
    template.addPersonId(new PersonID()
                  .setID("103")
                  .setAssigningOrganisation("5L399:Medway NHS Foundation Trust"));
    template.setPersonName(new PersonName()
                  .setGivenName("Steve")
                  .setFamilyName("Cook"));
    return template;
  }
View Full Code Here


    template.setOrgName("Medway Medical Practice");
    return template;
  }
 
  public static PersonUniversal createAuthenticator() {
    PersonUniversal template = new PersonUniversal();
   
    template.addPersonId(new PersonID()
                .setID("100")
                .setAssigningOrganisation("5L399:Medway NHS Foundation Trust"));
    template.setPersonName(new PersonName()
                    .setGivenName("Bruce")
                    .setFamilyName("Weller"));
    return template;
  }
View Full Code Here

TOP

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

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.