Fix parameter names. These are not partitions

This commit is contained in:
Tadgh 2020-07-03 13:18:48 -07:00
parent 19f3b7b121
commit 6259eada3c
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ public interface IResourceExpungeService {
void expungeHistoricalVersions(RequestDetails theRequestDetails, List<Long> thePartition, AtomicInteger theRemainingCount);
void expungeCurrentVersionOfResources(RequestDetails theRequestDetails, List<Long> thePartition, AtomicInteger theRemainingCount);
void expungeCurrentVersionOfResources(RequestDetails theRequestDetails, List<Long> theResourceIds, AtomicInteger theRemainingCount);
void expungeHistoricalVersionsOfIds(RequestDetails theRequestDetails, List<Long> thePartition, AtomicInteger theRemainingCount);
void expungeHistoricalVersionsOfIds(RequestDetails theRequestDetails, List<Long> theResourceIds, AtomicInteger theRemainingCount);
void deleteAllSearchParams(Long theResourceId);
}