/** * 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.dao.impl; import org.dspace.checker.ChecksumResult; import org.dspace.checker.ChecksumResultCode; import org.dspace.checker.dao.ChecksumResultDAO; import org.dspace.core.Context; import org.dspace.core.AbstractHibernateDAO; import org.hibernate.Criteria; import org.hibernate.criterion.Restrictions; import java.sql.SQLException; /** * Hibernate implementation of the Database Access Object interface class for the ChecksumResult object. * This class is responsible for all database calls for the ChecksumResult object and is autowired by spring * This class should never be accessed directly. * * @author kevinvandevelde at atmire.com */ public class ChecksumResultDAOImpl extends AbstractHibernateDAO<ChecksumResult> implements ChecksumResultDAO { protected ChecksumResultDAOImpl() { super(); } @Override public ChecksumResult findByCode(Context context, ChecksumResultCode code) throws SQLException { Criteria criteria = createCriteria(context, ChecksumResult.class); criteria.add(Restrictions.eq("resultCode", code)); return uniqueResult(criteria); } }