Remove deprecated methods.

This commit is contained in:
Luke deGruchy 2024-03-26 09:19:14 -04:00
parent 4a726dd2d1
commit d3e3d5df6d
2 changed files with 0 additions and 30 deletions

View File

@ -48,24 +48,6 @@ public interface IMdmSubmitSvc {
long submitSourceResourceTypeToMdm(
String theSourceResourceType, String theCriteria, RequestDetails theRequestDetails);
/**
* Convenience method that calls {@link #submitSourceResourceTypeToMdm(String, String)} with the type pre-populated.
*
* @param theCriteria The FHIR search critieria for filtering the resources to be submitted for MDM processing.
* @return the number of resources submitted for MDM processing.
*/
@Deprecated(forRemoval = true, since = "6.8.0")
long submitPractitionerTypeToMdm(String theCriteria, RequestDetails theRequestDetails);
/**
* Convenience method that calls {@link #submitSourceResourceTypeToMdm(String, String)} with the type pre-populated.
*
* @param theCriteria The FHIR search critieria for filtering the resources to be submitted for MDM processing.
* @return the number of resources submitted for MDM processing.
*/
@Deprecated(forRemoval = true, since = "6.8.0")
long submitPatientTypeToMdm(String theCriteria, RequestDetails theRequestDetails);
/**
* Given an ID and a source resource type valid for MDM, manually submit the given ID for MDM processing.
*

View File

@ -150,18 +150,6 @@ public class MdmSubmitSvcImpl implements IMdmSubmitSvc {
return resourcesToSubmit.size();
}
@Override
@Transactional
public long submitPractitionerTypeToMdm(@Nullable String theCriteria, @Nonnull RequestDetails theRequestDetails) {
return submitSourceResourceTypeToMdm("Practitioner", theCriteria, theRequestDetails);
}
@Override
@Transactional
public long submitPatientTypeToMdm(@Nullable String theCriteria, @Nonnull RequestDetails theRequestDetails) {
return submitSourceResourceTypeToMdm("Patient", theCriteria, theRequestDetails);
}
@Override
@Transactional
public long submitSourceResourceToMdm(IIdType theId, RequestDetails theRequestDetails) {