Yes, I saw that by looking at the sources Jersey.
I tried many different implicit parameters, like
@ApiParamsImplicit(@ApiParamImplicit(dataType = "file", name = "archive", paramType = "body"))
It didn't work but I guess it is because we didn't upgrade the UI yet. I'll upgrade it and see what happens.
By the way, I have some questions.
-> name = "archive" -> Does this mean it is the multipart named "archive"?
-> how can I pass a header for that multipart "archive". I'd like to use a header "Content-Disposition: attachment; filename=myFileName" - This header/filename is required by the API
-> is there any special support for this Content-Disposition header, so that this doesn't show a form on which the user should write "attachment; filename=xxx.jpg", and that the user could simply write the name of the file
-> as we select a file through a select file input, is there automatically the header applied to that multipart "Content-Disposition: form-data; name="archive"; filename="toto.jpg". This is normally handled by the browsers when using a form file upload.
Thanks