Examples of addPatientID()


Examples of uk.nhs.interoperability.payloads.templates.ChildPatientUniversal.addPatientID()

      idType = PatientIDType.VerifiedNHSNumber.code;
    } else {
      idType = PatientIDType.UnverifiedNHSNumber.code;
    }
   
    template.addPatientID(new PatientIDWithTraceStatuses()
                .setPatientID(fields.getPatientNHSNo())
                .setPatientIDType(idType)
                .setNHSNoTraceStatus(fields.getPatientNHSNoTraceStatus().code));
   
    if (fields.getPatientAddress() != null) {
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.ChildPatientUniversal.addPatientID()

    return template;
  }
 
  public static ChildPatientUniversal createPatient() {
    ChildPatientUniversal template = new ChildPatientUniversal();
    template.addPatientID(new PatientIDWithTraceStatuses()
                .setPatientID("K12345")
                .setAssigningOrganisation("V396A:Medway PCT")
                .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientIDWithTraceStatuses()
                .setPatientID("9932541280")
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.ChildPatientUniversal.addPatientID()

    ChildPatientUniversal template = new ChildPatientUniversal();
    template.addPatientID(new PatientIDWithTraceStatuses()
                .setPatientID("K12345")
                .setAssigningOrganisation("V396A:Medway PCT")
                .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientIDWithTraceStatuses()
                .setPatientID("9932541280")
                .setNHSNoTraceStatus(NHSNumberTraceStatus.TraceNeedsToBeResolved.code)
                .setPatientIDType(PatientIDType.UnverifiedNHSNumber.code));
    template.addAddress(new Address()
                .setAddressUse(AddressType.Home.code)
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.PatientUniversal.addPatientID()

    return template;
  }
 
  public static PatientUniversal createPatient() {
    PatientUniversal template = new PatientUniversal();
    template.addPatientID(new PatientID()
                  .setPatientID("K12345")
                  .setAssigningOrganisation("V396A:Medway PCT")
                  .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientID()
                  .setPatientID("993254128")
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.PatientUniversal.addPatientID()

    PatientUniversal template = new PatientUniversal();
    template.addPatientID(new PatientID()
                  .setPatientID("K12345")
                  .setAssigningOrganisation("V396A:Medway PCT")
                  .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientID()
                  .setPatientID("993254128")
                  .setPatientIDType(PatientIDType.UnverifiedNHSNumber.code));   
    template.addAddress(new Address()
                  .addAddressLine("17, County Court")
                  .addAddressLine("Woodtown")
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.PatientUniversal.addPatientID()

    return template;
  }
 
  public static PatientUniversal createPatient() {
    PatientUniversal template = new PatientUniversal();
    template.addPatientID(new PatientID()
                  .setPatientID("K12345")
                  .setAssigningOrganisation("V396A:Medway PCT")
                  .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientID()
                  .setPatientID("993254128")
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.PatientUniversal.addPatientID()

    PatientUniversal template = new PatientUniversal();
    template.addPatientID(new PatientID()
                  .setPatientID("K12345")
                  .setAssigningOrganisation("V396A:Medway PCT")
                  .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientID()
                  .setPatientID("993254128")
                  .setPatientIDType(PatientIDType.UnverifiedNHSNumber.code));   
    template.addAddress(new Address()
                  .addAddressLine("Appleton House")
                  .addAddressLine("Lanchester Road")
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.