mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-16 09:55:09 +00:00
Remove deprecated methods.
This commit is contained in:
parent
4a726dd2d1
commit
d3e3d5df6d
@ -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.
|
||||
*
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user