Examples of addTelephoneNumber()


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

                  .setPostcode("ME5 FL5")
                  .setAddressUse(AddressType.PhysicalVisit.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01634775667")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01634451628")
                  .setTelecomType(TelecomUseType.VacationHome.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("mailto:mark.smith@emailfree.co.uk")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
View Full Code Here

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

                  .setTelecom("tel:01634775667")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01634451628")
                  .setTelecomType(TelecomUseType.VacationHome.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("mailto:mark.smith@emailfree.co.uk")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
    template.addPatientName(new PersonName()
                  .setTitle("Mr")
                  .setGivenName("Mark")
View Full Code Here

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

                  .addAddressLine("Appleton House")
                  .addAddressLine("Lanchester Road")
                  .addAddressLine("Grimsby")
                  .setPostcode("DN3 1UJ")
                  .setAddressUse(AddressType.Home.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01472354321")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("mailto:mark.smith@emailfree.co.uk")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
View Full Code Here

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

                  .setPostcode("DN3 1UJ")
                  .setAddressUse(AddressType.Home.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01472354321")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("mailto:mark.smith@emailfree.co.uk")
                  .setTelecomType(TelecomUseType.HomeAddress.code));
    template.addPatientName(new PersonName()
                  .setTitle("Mr")
                  .setGivenName("Mark")
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.RecipientPersonUniversal.addTelephoneNumber()

    if (recipient.getRecipientAddress() != null) {
      template.setAddress(recipient.getRecipientAddress());
    }
    // recipientTelephone
     if (recipient.getRecipientTelephone() != null) {
       template.addTelephoneNumber(new Telecom("tel:" + recipient.getRecipientTelephone()));
     }
    // recipientJobRole
     if (recipient.getRecipientJobRole() != null) {
       template.setJobRoleName(recipient.getRecipientJobRole());
     }
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.RecipientPersonUniversalv1.addTelephoneNumber()

  public static RecipientPersonUniversalv1 createRecipient() {
    RecipientPersonUniversalv1 template = new RecipientPersonUniversalv1();
    template.addId(new RoleID()
              .setID("1234512345")
              .setAssigningOrganisation("V396A:Medway PCT"));
    template.addTelephoneNumber(new Telecom()
                      .setTelecom("mailto:t.hall@emailfree.co.uk"));
    template.setJobRoleName(JobRoleName._SpecialistNursePractitioner);
    template.setName(new PersonName()
                .setTitle("Mr")
                .setFamilyName("Hall")
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.