Project

General

Profile

1
package eu.dnetlib.oai;
2

    
3
public interface RecordChangeDetector {
4

    
5
	/**
6
	 * Checks if the two records have differences based on logics that vary on the actual implementor class.
7
	 *
8
	 * @param record1 first record to compare
9
	 * @param record2 second record to compare
10
	 * @return true if the two records differ based on the implementor's logics
11
	 */
12
	boolean differs(final String record1, final String record2);
13
}
(13-13/13)