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

org.dspace.checker.service.ChecksumResultService 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.util.List;

import org.dspace.checker.ChecksumResult;
import org.dspace.checker.ChecksumResultCode;
import org.dspace.core.Context;

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

    public ChecksumResult findByCode(Context context, ChecksumResultCode code) throws SQLException;

    public List findAll(Context context) throws SQLException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy