Project

General

Profile

1
package eu.dnetlib.validator.commons.dao.rules;
2

    
3
import java.util.List;
4

    
5
import eu.dnetlib.domain.functionality.validator.RuleSet;
6
import eu.dnetlib.validator.commons.dao.DAO;
7
import eu.dnetlib.validator.commons.dao.DaoException;
8

    
9
/**
10
 * 
11
 * @author nickonas
12
 *
13
 */
14
public interface RulesetsDAO extends DAO<RuleSet> {
15

    
16
	/**
17
	 * 
18
	 * @return
19
	 */
20
	public List<RuleSet> getRuleSets() throws DaoException;
21

    
22
	/**
23
	 *
24
	 * @return
25
	 */
26
	public List<RuleSet> getRuleSets(String guidelineAcronym) throws DaoException;
27

    
28
	
29
}
(4-4/5)