"303 See Other: For a description of this item, see " + location);
}
private boolean handleDownload(String resourceURI, HttpServletResponse response, D2RServer server) throws IOException {
Mapping m = D2RServer.retrieveSystemLoader(getServletContext()).getMapping();
for (Resource r: m.downloadMapResources()) {
DownloadMap d = m.downloadMap(r);
DownloadContentQuery q = new DownloadContentQuery(d, resourceURI);
if (q.hasContent()) {
response.setContentType(q.getMediaType() != null ? q.getMediaType() : "application/octet-stream");
InputStream is = q.getContentStream();