mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 15:03:18 +00:00
32 lines
929 B
Java
32 lines
929 B
Java
/**
|
|
* 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.qaevent;
|
|
|
|
import org.dspace.content.Item;
|
|
import org.dspace.core.Context;
|
|
import org.dspace.qaevent.service.dto.QAMessageDTO;
|
|
|
|
/**
|
|
* Interface for classes that perform a correction on the given item.
|
|
*
|
|
* @author Andrea Bollini (andrea.bollini at 4science.it)
|
|
*
|
|
*/
|
|
public interface QualityAssuranceAction {
|
|
|
|
/**
|
|
* Perform a correction on the given item.
|
|
*
|
|
* @param context the DSpace context
|
|
* @param item the item to correct
|
|
* @param relatedItem the related item, if any
|
|
* @param message the message with the correction details
|
|
*/
|
|
public void applyCorrection(Context context, Item item, Item relatedItem, QAMessageDTO message);
|
|
}
|