mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 23:43:06 +00:00
[CST-5249] Renamed NB with QA
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* 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);
|
||||
}
|
Reference in New Issue
Block a user