Project

General

Profile

1
package eu.dnetlib.data.mdstore.modular;
2

    
3
import java.util.Map;
4

    
5
/**
6
 * Parses a mdrecord and extracts the minimum information (like id, date etc) which is necessary for the mdstoring
7
 * process.
8
 *
9
 * @author marko
10
 */
11
public interface RecordParser {
12

    
13
	public Map<String, String> parseRecord(String record);
14

    
15
}
(7-7/10)