Package com.esri.gpt.server.csw.client

Examples of com.esri.gpt.server.csw.client.CswResult


* @return the resultant records
* @throws SearchException if an exception occurs
*/
public CswRecords parseResponse(String cswResponse)
   throws SearchException {
  CswResult results = new CswResult();
  try {
    getCswProfile().readGetRecordsResponse(cswResponse,
        results);
    LOG.log(Level.FINE, "Number of records returned {0}", results.getRecords().getSize());
  } catch (Exception e) {
    throw new SearchException(e);
  }
  return results.getRecords();
}
View Full Code Here

TOP

Related Classes of com.esri.gpt.server.csw.client.CswResult

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.