Uses of Class
org.dspace.checker.ChecksumResultCode
-
Packages that use ChecksumResultCode Package Description org.dspace.checker Provides content fixity checking (using checksums) for bitstreams stored in DSpace software.org.dspace.checker.dao org.dspace.checker.dao.impl Database access for the Checksum Checker tool, which looks for unexpected changes in Bitstream content.org.dspace.checker.service -
-
Uses of ChecksumResultCode in org.dspace.checker
Fields in org.dspace.checker with type parameters of type ChecksumResultCode Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<ChecksumResult,ChecksumResultCode>ChecksumResult_. resultCodeMethods in org.dspace.checker that return ChecksumResultCode Modifier and Type Method Description ChecksumResultCodeChecksumResult. getResultCode()static ChecksumResultCodeChecksumResultCode. valueOf(String name)Returns the enum constant of this type with the specified name.static ChecksumResultCode[]ChecksumResultCode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.dspace.checker with parameters of type ChecksumResultCode Modifier and Type Method Description voidResultsPruner. 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, Date retentionDate, ChecksumResultCode checksumResultCode)Delete the history records from the database.List<MostRecentChecksum>MostRecentChecksumServiceImpl. findBitstreamResultTypeReport(Context context, Date startDate, Date endDate, ChecksumResultCode resultCode)Select the most recent bitstream for a given date range with the specified status.ChecksumResultChecksumResultServiceImpl. 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 ChecksumResultCode Modifier and Type Method Description intChecksumHistoryServiceImpl. 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 ChecksumResultCode Modifier and Type Method Description intChecksumHistoryDAO. deleteByDateAndCode(Context context, Date retentionDate, ChecksumResultCode checksumResultCode)Delete all ChecksumHistory rows with retention date before the given and the specified result code.ChecksumResultChecksumResultDAO. findByCode(Context context, ChecksumResultCode code)List<MostRecentChecksum>MostRecentChecksumDAO. findByResultTypeInDateRange(Context context, Date startDate, Date endDate, ChecksumResultCode resultCode) -
Uses of ChecksumResultCode in org.dspace.checker.dao.impl
Methods in org.dspace.checker.dao.impl with parameters of type ChecksumResultCode Modifier and Type Method Description intChecksumHistoryDAOImpl. deleteByDateAndCode(Context context, Date retentionDate, ChecksumResultCode resultCode)ChecksumResultChecksumResultDAOImpl. findByCode(Context context, ChecksumResultCode code)List<MostRecentChecksum>MostRecentChecksumDAOImpl. findByResultTypeInDateRange(Context context, Date startDate, Date endDate, ChecksumResultCode resultCode) -
Uses of ChecksumResultCode in org.dspace.checker.service
Methods in org.dspace.checker.service with parameters of type ChecksumResultCode Modifier and Type Method Description intChecksumHistoryService. deleteByDateAndCode(Context context, Date retentionDate, ChecksumResultCode result)List<MostRecentChecksum>MostRecentChecksumService. findBitstreamResultTypeReport(Context context, Date startDate, Date endDate, ChecksumResultCode resultCode)ChecksumResultChecksumResultService. findByCode(Context context, ChecksumResultCode code)Method parameters in org.dspace.checker.service with type arguments of type ChecksumResultCode Modifier and Type Method Description intChecksumHistoryService. prune(Context context, Map<ChecksumResultCode,Long> interests)Prune the history records from the database.
-