@RequestMapping(value ="/files/{uuid:[\\w-]{36}}", method = RequestMethod.GET, produces = {MediaType.APPLICATION_OCTET_STREAM_VALUE})publicvoidget(@PathVariable(name ="uuid")String uuid, HttpServletResponse resp)throwsIOException{ net.bndy.wf.modules.core.models.File f =this.file...
@GetMapping(value = "/download/all", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE) public ResponseEntity<byte[]> downloadAllImagesAsZip() { final String zipFileName = "allImages.zip"; byte[] zipFile = downloadService.downloadAllImagesAsZipFile(); if (zipFile == null) {...