Uses of Enum Class
org.dspace.checker.ChecksumResultCode
Packages that use ChecksumResultCode
Package
Description
Provides content fixity checking (using checksums)
for bitstreams stored in DSpace software.
Database access for the Checksum Checker tool, which looks for unexpected
changes in Bitstream content.
-
Uses of ChecksumResultCode in org.dspace.checker
Fields in org.dspace.checker with type parameters of type ChecksumResultCodeModifier and TypeFieldDescriptionstatic jakarta.persistence.metamodel.SingularAttribute<ChecksumResult,ChecksumResultCode> ChecksumResult_.resultCodeMethods in org.dspace.checker that return ChecksumResultCodeModifier and TypeMethodDescriptionChecksumResult.getResultCode()static ChecksumResultCodeReturns the enum constant of this class with the specified name.static ChecksumResultCode[]ChecksumResultCode.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.dspace.checker with parameters of type ChecksumResultCodeModifier and TypeMethodDescriptionvoidResultsPruner.addInterested(ChecksumResultCode result, long duration) Add a result and the length of time before the history with this type of result is removed from the database.voidResultsPruner.addInterested(ChecksumResultCode result, String duration) Add a result and the length of time before it is removed from the checksum history table.intChecksumHistoryServiceImpl.deleteByDateAndCode(Context context, Instant retentionDate, ChecksumResultCode checksumResultCode) Delete the history records from the database.MostRecentChecksumServiceImpl.findBitstreamResultTypeReport(Context context, Instant startDate, Instant endDate, ChecksumResultCode resultCode) Select the most recent bitstream for a given date range with the specified status.ChecksumResultServiceImpl.findByCode(Context context, ChecksumResultCode code) Get the result description for the given result codeprotected ChecksumResultCheckerCommand.getChecksumResultByCode(ChecksumResultCode checksumResultCode) Method parameters in org.dspace.checker with type arguments of type ChecksumResultCodeModifier and TypeMethodDescriptionintChecksumHistoryServiceImpl.prune(Context context, Map<ChecksumResultCode, Long> interests) -
Uses of ChecksumResultCode in org.dspace.checker.dao
Methods in org.dspace.checker.dao with parameters of type ChecksumResultCodeModifier and TypeMethodDescriptionintChecksumHistoryDAO.deleteByDateAndCode(Context context, Instant retentionDate, ChecksumResultCode checksumResultCode) Delete all ChecksumHistory rows with retention date before the given and the specified result code.ChecksumResultDAO.findByCode(Context context, ChecksumResultCode code) MostRecentChecksumDAO.findByResultTypeInDateRange(Context context, Instant startDate, Instant endDate, ChecksumResultCode resultCode) -
Uses of ChecksumResultCode in org.dspace.checker.dao.impl
Methods in org.dspace.checker.dao.impl with parameters of type ChecksumResultCodeModifier and TypeMethodDescriptionintChecksumHistoryDAOImpl.deleteByDateAndCode(Context context, Instant retentionDate, ChecksumResultCode resultCode) ChecksumResultDAOImpl.findByCode(Context context, ChecksumResultCode code) MostRecentChecksumDAOImpl.findByResultTypeInDateRange(Context context, Instant startDate, Instant endDate, ChecksumResultCode resultCode) -
Uses of ChecksumResultCode in org.dspace.checker.service
Methods in org.dspace.checker.service with parameters of type ChecksumResultCodeModifier and TypeMethodDescriptionintChecksumHistoryService.deleteByDateAndCode(Context context, Instant retentionDate, ChecksumResultCode result) MostRecentChecksumService.findBitstreamResultTypeReport(Context context, Instant startDate, Instant endDate, ChecksumResultCode resultCode) ChecksumResultService.findByCode(Context context, ChecksumResultCode code) Method parameters in org.dspace.checker.service with type arguments of type ChecksumResultCodeModifier and TypeMethodDescriptionintChecksumHistoryService.prune(Context context, Map<ChecksumResultCode, Long> interests) Prune the history records from the database.