{
// File temp = new File("d:\\Temp\\"+System.currentTimeMillis());
// String tempDir = System.getProperty("java.io.tmpdir");
File temp = File.createTempFile(MOLGENIS_TEMP_PATH, "");
logger.debug("create temp file: " + temp);
return new FileLink(temp, "download/" + temp.getName());
}