All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.checker.service.ChecksumHistoryService Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.checker.service;

import java.sql.SQLException;
import java.time.Instant;
import java.util.Map;

import org.dspace.checker.ChecksumResultCode;
import org.dspace.checker.MostRecentChecksum;
import org.dspace.content.Bitstream;
import org.dspace.core.Context;

/**
 * Service interface class for the ChecksumHistory object.
 * The implementation of this class is responsible for all business logic calls for the ChecksumHistory object and is
 * autowired by spring
 *
 * @author kevinvandevelde at atmire.com
 */
public interface ChecksumHistoryService {

    public void updateMissingBitstreams(Context context) throws SQLException;

    public void addHistory(Context context, MostRecentChecksum mostRecentChecksum) throws SQLException;

    public int deleteByDateAndCode(Context context, Instant retentionDate, ChecksumResultCode result)
        throws SQLException;

    public void deleteByBitstream(Context context, Bitstream bitstream) throws SQLException;

    /**
     * Prune the history records from the database.
     *
     * @param context   context
     * @param interests set of results and the duration of time before they are
     *                  removed from the database
     * @return number of bitstreams deleted
     * @throws SQLException if database error
     */
    public int prune(Context context, Map interests) throws SQLException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy