
Package ca.uhn.fhir.mdm.api
Interface IMdmMatchFinderSvc
public interface IMdmMatchFinderSvc
-
Method Summary
Modifier and TypeMethodDescriptiongetMatchedTargets(String theResourceType, org.hl7.fhir.instance.model.api.IAnyResource theResource, ca.uhn.fhir.interceptor.model.RequestPartitionId theRequestPartitionId) Retrieve a list of possible target candidates for matching, based on the givenIAnyResourceInternally, performs all MDM matching rules on the type of the resource.
-
Method Details
-
getMatchedTargets
@Nonnull List<MatchedTarget> getMatchedTargets(String theResourceType, org.hl7.fhir.instance.model.api.IAnyResource theResource, ca.uhn.fhir.interceptor.model.RequestPartitionId theRequestPartitionId) Retrieve a list of possible target candidates for matching, based on the givenIAnyResourceInternally, performs all MDM matching rules on the type of the resource.- Parameters:
theResourceType- the type of the resource.theResource- the resource that we are attempting to find matches for.- Returns:
- a List of
MatchedTargetrepresenting POSSIBLE_MATCH and MATCH outcomes.
-