Examples of OrgID


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

    minimal.setName(new PersonName()
                .setTitle("Dr")
                .setGivenName("Peter")
                .setFamilyName("Thomson"));
   
    minimal.setOrgId(new OrgID().setID("RPA").setType(OrgIDType.ODSOrgID.code));
    minimal.setOrgName("Medway NHS Foundation Trust");
   
    return minimal;
  }
View Full Code Here

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

 
  public static RecipientPersonUniversal createEOLCDocRecipient() {
    RecipientPersonUniversal eolcRecipient = new RecipientPersonUniversal();

    eolcRecipient.setName(new PersonName("De Hopper"));
    eolcRecipient.setOrgId(new OrgID().setID("V396F").setType(OrgIDType.ODSOrgID.code));
    eolcRecipient.setOrgName("Dr De Hopper and Partners");
   
    return eolcRecipient;
  }
View Full Code Here

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

    originalAuthor.setJobRoleName(JobRoleName._NR2040);
    originalAuthor.setName(new PersonName()
                  .setTitle("Ms")
                  .setGivenName("Niral")
                  .setFamilyName("Singh"));
    originalAuthor.setOrganisationId(new OrgID()
                  .setID("V356F")
                  .setType(OrgIDType.ODSOrgID.code));
    originalAuthor.setOrganisationName("St James Hospital");
    template.setOriginalAuthor(originalAuthor);
   
View Full Code Here

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

  private static CustodianOrganizationUniversal template;
 
  public static CustodianOrganizationUniversal createFull() {
    CustodianOrganizationUniversal template = new CustodianOrganizationUniversal();
    template.setId(new OrgID(OrgIDType.ODSOrgID.code, "5L3"));
    template.setName("Medway NHS Foundation Trust");
    return template;
  }
View Full Code Here

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

                  .setPostcode("ME5 FS1"));
   
    template.addTelephoneNumber(new Telecom()
                  .setTelecom("tel:01634445667"));
   
    template.setOrgId(new OrgID()
                .setID("XZ901")
                .setType(OrgIDType.ODSSiteCode.code));
   
    template.setOrgName("St. Elsewhere's Hospital");
   
View Full Code Here

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

  }
 
  public static RecipientOrganizationUniversal createMinimal() {
    RecipientOrganizationUniversal minimal = new RecipientOrganizationUniversal();
   
    minimal.setOrgId(new OrgID()
                .setID("XZ901")
                .setType(OrgIDType.ODSSiteCode.code));
   
    minimal.setOrgName("St. Elsewhere's Hospital");
   
View Full Code Here

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

   
    // Performer
    template.setSampleCollectedTime(new DateValue("201209111300"));
    template.addPerformerPersonId(new PersonID().setNullFlavour(NullFlavour.Unknown.code));
    template.setPerformerPersonName(new PersonName("Mr", "Brian", "Weberly"));
    template.setPerformerOrgId(new OrgID()
                      .setID("A0991")
                      .setType(OrgIDType.ODSOrgID.code));
    template.setPerformerOrgName("St James Hospital");
   
    // Lab
    template.setTimeReceivedAtLab(new DateValue("201209111310"));
    template.setLabOrganisationId(new OrgID()
                      .setID("A0078")
                      .setType(OrgIDType.ODSOrgID.code));
    template.setLabOrganisationDescription("St James Pathology Laboratory");
   
    // Screening results
View Full Code Here

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

    originalAuthor.addTelephoneNumber(new Telecom("tel:07621846951"));
    originalAuthor.setName(new PersonName()
                  .setTitle("Dr")
                  .setGivenName("John")
                  .setFamilyName("Manning"));
    originalAuthor.setOrganisationId(new OrgID()
                  .setID("V365F")
                  .setType(OrgIDType.ODSOrgID.code));
    originalAuthor.setOrganisationName("Freshney Green PCC");
    template.setSeniorResponsibleClinicianAuthor(originalAuthor);
   
View Full Code Here

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

                      .setGuardianName(new PersonName("Mrs", "Shelly", "Smith")));
   
    template.addGuardian(guardian);
   
    // Provider Organisation
    template.setOrganisationId(new OrgID().setID("V396F"));
    template.setOrganisationName("Dr De Hopper and Partners");
    template.addOrganisationTelephone(new Telecom()
                        .setTelecom("tel:01634111222")
                        .setTelecomType(TelecomUseType.WorkPlace.code));
    template.setOrganisationAddress(new Address()
                      .addAddressLine("Freshney Green PCC")
                      .addAddressLine("Grimsby")
                      .setPostcode("DN34 4GB")
                      .setAddressUse(AddressType.WorkPlace.code));
    template.setOrganisationType(CDAOrganizationProviderType._GPPractice);
    template.addOrganisationPartOf(new ChildPatientOrganisationPartOf()
                        .addOrganisationId(new OrgID(OrgIDType.ODSOrgID.code, "V396G")));
    return template;
  }
View Full Code Here

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

    AuthorDeviceUniversal template = new AuthorDeviceUniversal();
   
     template.addDeviceId(new DeviceID().setID("123456"));
    template.setManufacturerModelName(new CodedValue("OMRON-M2", "BASIC BP DEVICE"));
    template.setSoftwareName(new CodedValue("B003CYK6FA", "OMRON M2 BP MONITOR"));
    template.setOrgId(new OrgID()
                .setID("SITE1234")
                .setType(OrgIDType.ODSOrgID.code));
    template.setOrgName("MEDWAY HEATH CENTRE");
   
    return template;
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.