use of uk.nhs.connect.iucds.cda.ucr.AD in project integration-adaptor-111 by nhsconnect.
the class LocationMapperTest method prepareIntendedRecipientMocks.
private POCDMT000002UK01IntendedRecipient prepareIntendedRecipientMocks() {
POCDMT000002UK01IntendedRecipient itkIntendedRecipient = mock(POCDMT000002UK01IntendedRecipient.class);
AD itkAddress = mock(AD.class);
TEL itkTelecom = mock(TEL.class);
when(itkIntendedRecipient.sizeOfAddrArray()).thenReturn(new AD[] { itkAddress }.length);
when(addressMapper.mapAddress(any())).thenReturn(address);
when(itkIntendedRecipient.getTelecomArray()).thenReturn(new TEL[] { itkTelecom });
when(contactPointMapper.mapContactPoint(any())).thenReturn(contactPoint);
when(resourceUtil.newRandomUuid()).thenReturn(new IdType(RANDOM_UUID));
return itkIntendedRecipient;
}
use of uk.nhs.connect.iucds.cda.ucr.AD in project integration-adaptor-111 by nhsconnect.
the class PatientMapperTest method mockAddress.
private void mockAddress(POCDMT000002UK01PatientRole patientRole) {
when(patientRole.sizeOfAddrArray()).thenReturn(1);
AD itkAddress = mock(AD.class);
when(patientRole.getAddrArray()).thenReturn(Arrays.array(itkAddress));
when(addressMapper.mapAddress(any())).thenReturn(address);
}
use of uk.nhs.connect.iucds.cda.ucr.AD in project integration-adaptor-111 by nhsconnect.
the class LocationMapper method mapHealthcareFacilityToLocationComponent.
public Encounter.EncounterLocationComponent mapHealthcareFacilityToLocationComponent(POCDMT000002UK01ClinicalDocument1 clinicalDocument) {
POCDMT000002UK01EncompassingEncounter encompassingEncounter = clinicalDocument.getComponentOf().getEncompassingEncounter();
POCDMT000002UK01Place place = Optional.ofNullable(encompassingEncounter).map(POCDMT000002UK01EncompassingEncounter::getLocation).map(POCDMT000002UK01Location::getHealthCareFacility).map(POCDMT000002UK01HealthCareFacility::getLocation).orElse(null);
if (place != null) {
Location location = new Location();
location.setIdElement(resourceUtil.newRandomUuid());
location.setName(nodeUtil.getAllText(place.getName().getDomNode()));
AD address = place.getAddr();
if (address != null) {
location.setAddress(addressMapper.mapAddress(address));
}
Encounter.EncounterLocationComponent encounterLocationComponent = new Encounter.EncounterLocationComponent();
encounterLocationComponent.setStatus(Encounter.EncounterLocationStatus.COMPLETED);
encounterLocationComponent.setLocation(resourceUtil.createReference(location));
encounterLocationComponent.setLocationTarget(location);
return encounterLocationComponent;
}
return null;
}
Aggregations