Package org.fao.oaipmh.requests

Examples of org.fao.oaipmh.requests.AbstractRequest


    try
    {
      url    = si.getSiteUrl() + context.getBaseUrl() +"/"+ Jeeves.Prefix.SERVICE +"/en/"+ context.getService();
      params = OaiPmhFactory.extractParams(request);

      AbstractRequest  req = OaiPmhFactory.parse(context.getApplicationContext(), params);
      OaiPmhService    srv = hmServices.get(req.getVerb());
      AbstractResponse res = srv.execute(req, context);

      Element response = res.toXml();

      return Lib.createOaiRoot(url, params, response);
View Full Code Here

TOP

Related Classes of org.fao.oaipmh.requests.AbstractRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.