Project

General

Profile

1
package eu.dnetlib.wds.collector.plugins;
2

    
3
import eu.dnetlib.rmi.data.CollectorServiceException;
4
import eu.dnetlib.rmi.data.InterfaceDescriptor;
5
import eu.dnetlib.rmi.data.plugin.AbstractCollectorPlugin;
6

    
7
/**
8
 * Created by sandro on 5/27/16.
9
 */
10
public class CMRCollectorPlugin extends AbstractCollectorPlugin {
11

    
12
	@Override
13
	public Iterable<String> collect(final InterfaceDescriptor interfaceDescriptor, final String fromDate, final String untilDate)
14
			throws CollectorServiceException {
15
		return () -> new CMRIterator();
16
	}
17
}
(1-1/2)