You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The if-clause there asks if Contractors are testContractors. If so, the OPENARCHIVES-Rels will not be set. In consequence no testing of OAI-PMH is possible within Testsystem.
Please consider to remove or refine the if clause accordingly. Thanks
if (!(preservationSystem.getClosedCollectionName()+":").equals(collection) &&
// don't add test packages to OAI-PMH
!testContractors.contains(o.getContractor().getShort_name())
) {
String oaiId = OAI_DANRW_DE + o.getIdentifier();
repositoryFacade.addRelationship(o.getIdentifier(), collection, OPENARCHIVES_OAI_IDENTIFIER, oaiId);
logger.debug("Added relationship: "+OPENARCHIVES_OAI_IDENTIFIER+" " + oaiId);
}
The text was updated successfully, but these errors were encountered:
Unfortunately, within the production system the ITEMID relationship in RELS-EXT Datastream is missing too. Not only for objects closed for public access, but also for objects free for open access.
Therefore Display in OAI-PMH and distribution to DDB and Europeana is not possible
The if-clause there asks if Contractors are testContractors. If so, the OPENARCHIVES-Rels will not be set. In consequence no testing of OAI-PMH is possible within Testsystem.
Please consider to remove or refine the if clause accordingly. Thanks
The text was updated successfully, but these errors were encountered: