// If doc size is greater than 1 then throw Exception
if (docs != null) {
if (docs.size() > 1)
{
SSAFSolrException ssafException = new SSAFSolrException();
ssafException.setFatalError(SSAFSolrErrorCodes.NO_RECORDS_FOUND);
throw ssafException;
}
else
{
// Get the first record
SolrDocument doc = docs.get(0);
if ( doc != null)
result = (String) doc.getFieldValue("stash-filepath");
}
} else {
SSAFSolrException ssafException = new SSAFSolrException();
ssafException.setFatalError(SSAFSolrErrorCodes.NO_RECORDS_FOUND);
throw ssafException;
}
// Return result
return result;
}
catch (SolrServerException se)
{
SSAFSolrException ssafException = new SSAFSolrException();
ssafException.setFatalError(SSAFSolrErrorCodes.UNABLE_TO_FETCH);
throw ssafException;
}
}