Examples of Telecom


Examples of uk.nhs.interoperability.payloads.commontypes.Telecom

    template.addAddress(new Address()
            .addAddressLine("Appleton House")
            .addAddressLine("Lanchester Road")
            .setCity("Grimsby")
            .setPostcode("DN3 1UJ"));
    template.addTelephoneNumber(new Telecom("tel:01472354321"));
    template.addName(new PersonName("Mr", "Mark", "Smith"));
    template.setSex(Sex._Male);
    template.setBirthTime(new DateValue("19490101"));
   
    return template;
View Full Code Here

Examples of uk.nhs.interoperability.payloads.commontypes.Telecom

    template.setAuthoritytoLPA(new CodedValue(AuthoritytoLPASnCT._816381000000105, "#a7"));
   
    PatientRelationshipParticipantRole person = new PatientRelationshipParticipantRole();
    person.setPersonRole(JobRoleName._NR2010);
    person.setAddress(new Address().setNullFlavour(NullFlavour.NI.code));
    person.addTelephoneNumber(new Telecom("tel:07871715735"));
    person.setPersonName(new PersonName()
                  .setTitle("Mr")
                  .setGivenName("Alan")
                  .setFamilyName("Smith"));
   
View Full Code Here

Examples of uk.nhs.interoperability.payloads.commontypes.Telecom

    subject.addSubjectAddress(new Address()
            .addAddressLine("Appleton House")
            .addAddressLine("Lanchester Road")
            .setCity("Grimsby")
            .setPostcode("DN3 1UJ"));
    subject.addSubjectTelephoneNumber(new Telecom("tel:01472354321"));
    subject.addSubjectName(new PersonName("Mr", "Mark", "Smith"));
    subject.setSubjectSex(Sex._Male);
    subject.setSubjectBirthTime(new DateValue("19490101"));
    template.addAttachmentSubject(subject);
   
View Full Code Here

Examples of uk.nhs.interoperability.payloads.commontypes.Telecom

   
    template.setWorkgroupId(new WorkgroupID()
                  .setID("1000998765123")
                  .setType(WorkgroupIDType.SDSWorkgroupID.code));
   
    template.addTelephoneNumber(new Telecom()
                .setTelecom("tel:01634445667"));

    template.setPersonName(new PersonName()
                .setTitle("Dr")
                .setGivenName("Nick")
View Full Code Here

Examples of uk.nhs.interoperability.payloads.commontypes.Telecom

    template.setAddress(new Address()
            .addAddressLine("Appleton House")
            .addAddressLine("Lanchester Road")
            .setCity("Grimsby")
            .setPostcode("DN3 1UJ"));
    template.setTelephone(new Telecom("tel:01472354321"));
    template.setName(new PersonName("Mr", "Mark", "Smith"));
    return template;
  }
View Full Code Here

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

                  .addAddressLine("Medway")
                  .addAddressLine("Kent")
                  .setPostcode("ME5 FL5")
                  .setAddressUse(FHIRAddressType.work.code));
   
    resource.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01634772367")
                  .setTelecomType(FHIRTelecomUseType.home.code));
   
    resource.addTelephoneNumber(new Telecom()
                  .setTelecom("mailto:mark.smith@emailfree.co.uk")
                  .setTelecomType(FHIRTelecomUseType.home.code));
   
    // Patient
    resource.addPatientName(new HumanName()
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.