* <code>baseUrl</code>.
*/
public static OaiPmhRepositoryClient newHarvester(String baseUrl) {
OaiPmhRepositoryClient repositoryClient = new OaiPmhRepositoryClient(baseUrl);
// identify the repository
Granularity g = repositoryClient.identify().getGranularity();
repositoryClient.setSupportedGranularity(g);
return repositoryClient;
}