Package uk.nhs.interoperability.payloads.commontypes

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


                 .setID("1000998765123")
                 .setType(WorkgroupIDType.SDSWorkgroupID.code));
    
     template.setWorkgroupName(new CodedValue("01","MEDWAYSPECIALISTTEAM"));
   
     template.addTelephoneNumber(new Telecom("tel:01634445667"));
    
     template.setPersonName(new PersonName()
                     .setTitle("Dr")
                     .setGivenName("Nick")
                     .setFamilyName("Smith"));
View Full Code Here


    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

    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

    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

   
    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

    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

TOP

Related Classes of uk.nhs.interoperability.payloads.commontypes.Telecom

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.