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

Removed some unused commented out code

parent cfb0fabc
No related branches found
No related tags found
No related merge requests found
......@@ -52,25 +52,6 @@ public abstract class IdentifierListDelivererAbstract implements IdentifierListD
+ request.getIdentifier());
}
// // Check if resumptioToken is valid
// if (request.getResumptionToken() != null) {
//
// if (IdentifierListDelivererAbstract.isIdiomMets()
// && IdentifierListDelivererIDIOM.cursorCollector
// .containsKey(request.getResumptionToken())) {
// IdentifierListDelivererAbstract.setIdiomMets(true);
// IdentifierListDelivererAbstract.setDublinCore(false);
// } else if (IdentifierListDelivererAbstract.isDublinCore()
// && IdentifierListDelivererDC.cursorCollector.containsKey(request.getResumptionToken())) {
// IdentifierListDelivererAbstract.setDublinCore(true);
// IdentifierListDelivererAbstract.setIdiomMets(false);
// } else {
// result.setError(TGConstants.OAI_BAD_RESUMPTION_TOKEN,
// "The value of the " + request.getResumptionToken()
// + " argument is invalid or expired.");
// }
// }
// Check if resumptionToken is invalid or existing.
if (request.getResumptionToken() != null) {
boolean restokDCExisting = RecordListDelivererIDIOM.cursorCollector != null
......@@ -83,20 +64,6 @@ public abstract class IdentifierListDelivererAbstract implements IdentifierListD
}
}
// if (request.getResumptionToken() == null && request.getMetadataPrefix() != null) {
// if (request.getMetadataPrefix().equals(TGConstants.METADATA_IDIOM_PREFIX)) {
// IdentifierListDelivererAbstract.setIdiomMets(true);
// IdentifierListDelivererAbstract.setDublinCore(false);
// }
// if (request.getMetadataPrefix().equals(TGConstants.METADATA_DC_PREFIX)) {
// IdentifierListDelivererAbstract.setDublinCore(true);
// IdentifierListDelivererAbstract.setIdiomMets(false);
// }
// }
//
// // Check if other params are existing, they shouldn't!
// else {
List<String> errorValues = new ArrayList<String>();
if (request.getResumptionToken() != null && request.getMetadataPrefix() != null) {
......
......@@ -45,13 +45,13 @@ public class OaiPmhTextgridOnlineTests {
// The OAIPMH host to be tested.
// private static String host = "http://dev.textgridlab.org/1.0/tgoaipmh/";
// private static String host = "http://textgridlab.org/1.0/tgoaipmh/";
private static String host = "http://textgridlab.org/1.0/tgoaipmh/";
// NOTE Test with "mvn jetty:run" in oaipmh-webapp module folder and SSH tunneling "ssh -L
// 9302:localhost:9302 -l username textgrid-esx2.gwdg.de", please use original OAIPMH config file
// from /etc/dhrep/oaipmh/oaipmh.textgrid.properties and copy it to
// /etc/dhrep/oaipmh/oaipmh.config on your local machine!
private static String host = "http://localhost:8095/oaipmh/";
// private static String host = "http://localhost:8095/oaipmh/";
// NOTE Use "mvn tomcat:run" here!
// private static String host = "http://localhost:8080/oaipmh-webapp/";
......
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