package eu.dnetlib.validator2.engine; import java.util.function.Predicate; public interface Rule extends Predicate { C getContext(); @Override boolean test(T t) throws RuleEvaluationException; }