Skip to content
Snippets Groups Projects
Commit 1c91b947 authored by Stefan E. Funk's avatar Stefan E. Funk
Browse files

Finally GetRecord is running.

parent f216d194
No related branches found
No related tags found
No related merge requests found
......@@ -119,12 +119,8 @@ public class RecordDeliverer {
.setType(this.oaiEsClient.getEsType()).setFields(this.fields)
.setId(changedId);
System.out.println("id: " + changedId);
GetResponse tgObject = recordById.execute().actionGet();
System.out.println("tgo: " + tgObject);
if (tgObject.isExists()) {
// FIXME PUT CHECK INTO TEXTGRID CONDITIONAL BELOW!!!
// if(tgObject.isExists() &&
......
......@@ -171,8 +171,8 @@ public class RecordListDeliverer {
SearchResponse getRecordListItems = getRecordList.execute().actionGet();
// FIXME REMOVE DEBUG OUTPUT
System.out.println("totalHits: "
+ getRecordListItems.getHits().totalHits());
// System.out.println("totalHits: "
// + getRecordListItems.getHits().totalHits());
// FIXME REMOVE DEBUG OUTPUT
if (getRecordListItems != null
......
......@@ -215,7 +215,7 @@ public class OaiPmhTest {
}
@Test
// @Ignore
@Ignore
public void testGetRequestGetRecordDariah() throws ParseException {
this.record.setContributor(DARIAHConstants.CONTRIBUTOR_LIST);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment