Package org.dspace.checker.service
Interface MostRecentChecksumService
- All Known Implementing Classes:
MostRecentChecksumServiceImpl
public interface MostRecentChecksumService
Service interface class for the MostRecentChecksum object.
The implementation of this class is responsible for all business logic calls for the MostRecentChecksum object and
is autowired by spring
- Author:
- kevinvandevelde at atmire.com
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteByBitstream(Context context, Bitstream bitstream) findBitstreamResultTypeReport(Context context, Instant startDate, Instant endDate, ChecksumResultCode resultCode) findByBitstream(Context context, Bitstream bitstream) findNotInHistory(Context context) findNotProcessedBitstreamsReport(Context context, Instant startDate, Instant endDate) findOldestRecord(Context context) findOldestRecord(Context context, Instant lessThanDate) voidupdate(Context context, MostRecentChecksum mostRecentChecksum) voidupdateMissingBitstreams(Context context)
-
Method Details
-
getNonPersistedObject
MostRecentChecksum getNonPersistedObject() -
findByBitstream
- Throws:
SQLException
-
findNotProcessedBitstreamsReport
List<MostRecentChecksum> findNotProcessedBitstreamsReport(Context context, Instant startDate, Instant endDate) throws SQLException - Throws:
SQLException
-
findBitstreamResultTypeReport
List<MostRecentChecksum> findBitstreamResultTypeReport(Context context, Instant startDate, Instant endDate, ChecksumResultCode resultCode) throws SQLException - Throws:
SQLException
-
updateMissingBitstreams
- Throws:
SQLException
-
deleteByBitstream
- Throws:
SQLException
-
findOldestRecord
- Throws:
SQLException
-
findOldestRecord
- Throws:
SQLException
-
findNotInHistory
- Throws:
SQLException
-
update
- Throws:
SQLException
-