Merge branch 'gg_20201105-remove-person-references' of github.com:jamesagnew/hapi-fhir into gg_20201105-remove-person-references

This commit is contained in:
Tadgh 2020-11-19 14:23:50 -05:00
commit 3ad0fa8fda
2 changed files with 1 additions and 9 deletions

View File

@ -107,7 +107,7 @@ public class MdmStorageInterceptor implements IMdmStorageInterceptor {
@Hook(Pointcut.STORAGE_PRESTORAGE_RESOURCE_DELETED)
public void deleteMdmLinks(RequestDetails theRequest, IBaseResource theResource) {
if (!MdmUtil.isMdmResourceType(myFhirContext, theResource)) {
if (!myMdmSettings.isSupportedMdmType(myFhirContext.getResourceType(theResource))) {
return;
}
myMdmLinkDeleteSvc.deleteWithAnyReferenceTo(theResource);

View File

@ -31,14 +31,6 @@ import java.util.Optional;
public final class MdmUtil {
private MdmUtil() {}
public static boolean isMdmResourceType(FhirContext theFhirContext, IBaseResource theResource) {
String resourceType = theFhirContext.getResourceType(theResource);
return ("Patient".equals(resourceType) ||
"Practitioner".equals(resourceType)) ||
"Person".equals(resourceType);
}
/**
* If the resource is tagged as not managed by empi, return false. Otherwise true.
* @param theBaseResource The Patient/Practitioner that is potentially managed by EMPI.