Examples of CswResult


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
Copyright © 2018 www.massapi.com. 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.