Package uk.nhs.interoperability.payloads.commontypes

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


    template.setEffectiveTime(new DateValue("201209111400+0000"));
    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


   
    AttachmentSubject subject = new AttachmentSubject();
    subject.setAwarenessCode(TargetAwareness._fullawareness);
   
    subject.setSubjectRelationshipType(PersonalRelationshipRoleType._FamilyMember);
    subject.addSubjectAddress(new Address()
            .addAddressLine("Appleton House")
            .addAddressLine("Lanchester Road")
            .setCity("Grimsby")
            .setPostcode("DN3 1UJ"));
    subject.addSubjectTelephoneNumber(new Telecom("tel:01472354321"));
View Full Code Here

 
  public static RelatedEntity createFull() {
    RelatedEntity template = new RelatedEntity();
   
    template.setCDAPersonRelationshipType(CDAPersonRelationshipType._Spouse);
    template.setAddress(new Address()
            .addAddressLine("Appleton House")
            .addAddressLine("Lanchester Road")
            .setCity("Grimsby")
            .setPostcode("DN3 1UJ"));
    template.setTelephone(new Telecom("tel:01472354321"));
View Full Code Here

TOP

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

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.