Package uk.nhs.interoperability.payloads.commontypes

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


   
    template.setId("8371D2F1-123F-4A14-A1AC-C6C8023103CF");
    template.setClassCode(HL7ActType.Procedure.code);
    template.setEventCode(new CodedValue("73761001","colonoscopy","2.16.840.1.113883.2.1.3.2.4.15"));
    template.setEffectiveTime(
              new DateRange(new DateValue("201105192000+01"),
                      new DateValue("201105192045+01")));
   
    // Performer
    PersonWithOrganizationUniversal performer = new PersonWithOrganizationUniversal();
    performer.addPersonId(new PersonID()
View Full Code Here


    EncompassingEncounter template = new EncompassingEncounter();
   
    template.setId("3D3B95B5-24AA-42ED-9F77-BE7ECEB78C3E");
    template.setCode(new CodedValue("11429006", "Consultation", "2.16.840.1.113883.2.1.3.2.4.15"));
    template.setEffectiveTime(
        new DateRange(new DateValue("201105191945+01"),
                new DateValue("201105192015+01")));
   
    // Responsible Party
    PersonWithOrganizationUniversal responsible = new PersonWithOrganizationUniversal();
    responsible.addPersonId(new PersonID().setNullFlavour(NullFlavour.NI.code));
View Full Code Here

  public static EncompassingEncounter createFull() {
    EncompassingEncounter template = new EncompassingEncounter();
   
    template.setId("3D3B95B5-24AA-42ED-9F77-BE7ECEB78C3E");
    template.setCode(CDAEncounterType._Consultation);
    template.setEffectiveTime(new DateRange(new DateValue("201105191945+01"),
                        new DateValue("201105192015+01")));
   
    PersonWithOrganizationUniversal person = new PersonWithOrganizationUniversal();
    person.setJobRoleName(JobRoleName._MedicalDirector);
    person.addPersonId(new PersonID().setNullFlavour(NullFlavour.NI.code));
View Full Code Here

    template.setId("8371D2F1-123F-4A14-A1AC-C6C8023103CF");
    template.setClassCode(HL7ActType.Procedure.code);
    template.setEventCode(new CodedValue("73761001", "colonoscopy", "2.16.840.1.113883.2.1.3.2.4.15"));
   
    template.setEffectiveTime(
            new DateRange(new DateValue("201105192000+01"),
                    new DateValue("201105192045+01")));
   
    PersonWithOrganizationUniversal person = new PersonWithOrganizationUniversal();
    person.addPersonId(new PersonID().setNullFlavour(NullFlavour.NI.code));
    person.setPersonName(new PersonName("Joe Bloggs"));
View Full Code Here

TOP

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

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.