Changeset 29270 for main/trunk


Ignore:
Timestamp:
2014-09-11T14:45:12+12:00 (10 years ago)
Author:
kjdon
Message:

removed some old stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/core/OAIReceptionist.java

    r29066 r29270  
    126126    }
    127127
    128     //clear out expired resumption tokens stored in OAIResumptionToken.xml
     128    // load in tokens from OAIResumptionToken.xml, and then clear out any
     129    // expired ones.
    129130    OAIResumptionToken.init();
    130131    OAIResumptionToken.clearExpiredTokens();
     
    913914      It has already been checked that the 'identifier' contains at least one ':'
    914915  */
    915   // private String[] splitNames(String identifier) {
    916   //   logger.info(identifier);
    917   //   String [] strs = new String[2];
    918   //   int first_colon = identifier.indexOf(":");
    919   //   if(first_colon == -1) {
    920   //     return null;
    921   //   }
    922   //   strs[0] = identifier.substring(0, first_colon);
    923   //   strs[1] = identifier.substring(first_colon + 1);
    924   //   return strs;
    925   // }
     916
    926917  /** validate if the specified metadata prefix value is supported by the repository
    927918   *  by checking it in the OAIConfig.xml
Note: See TracChangeset for help on using the changeset viewer.