org.dspace.xoai.services.api.EarliestDateResolver Maven / Gradle / Ivy
/**
* 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.xoai.services.api;
import java.sql.SQLException;
import java.util.Date;
import org.dspace.core.Context;
import org.dspace.xoai.exceptions.InvalidMetadataFieldException;
public interface EarliestDateResolver {
public Date getEarliestDate(Context context) throws InvalidMetadataFieldException, SQLException;
}