if (!file.exists() || file.isDirectory())
{
String message =
"Could not locate the reference source file(s) in the data store.";
LOGGER.log(Level.FINE, message);
throw new BadRequestException(message);
}
httpHeaders.add("Content-Type", contentType);
httpHeaders.add("Content-Disposition",
"attachment; filename=\"" + file.getName() + "\"");