Fixed Provider declaration

This commit is contained in:
FabioISTI 2020-05-08 10:38:41 +02:00
parent fb14ae68c7
commit 2b976a081e
3 changed files with 11 additions and 1 deletions

View File

@ -1 +1 @@
org.gcube.data.publishing.gFeed.collectors.oai.OAIHarvester.java
org.gcube.data.publishing.gFeed.collectors.oai.OAIHarvester

View File

@ -7,6 +7,8 @@ import javax.xml.bind.JAXBException;
import org.gcube.data.publishing.gFeed.collectors.oai.OAIClient;
import org.gcube.data.publishing.gFeed.collectors.oai.model.OAIInteractionException;
import org.gcube.data.publishing.gFeed.collectors.oai.model.OAIRecord;
import org.gcube.data.publishing.gFeed.collectors.oai.model.ckan.GCatModel;
import org.gcube.data.publishing.gFeed.collectors.oai.model.ckan.GCatTransformer;
public class OAIClientTests {
@ -18,6 +20,10 @@ public class OAIClientTests {
System.out.println("Records size = "+records.size());
GCatTransformer tr=new GCatTransformer();
tr.transform(records);
}
}

View File

@ -43,4 +43,8 @@ public class TranslationTest extends BaseCollectorTest{
System.out.println(((CatalogueFormatData)data).toCatalogueFormat());
}
}
}