String redirectMessage =
"If you are not automatically redirected use this url: " + fileReference.toString();
return redirectMessage;
}
else {
Representation result = new StorageFileItemRepresentation(file);
result.setDownloadable(true);
result.setDownloadName(file.getName());
return result;
}
}