jersey icon indicating copy to clipboard operation
jersey copied to clipboard

multipart/mixed example issue

Open harshakumar347 opened this issue 7 years ago • 0 comments

In Example 9.50

@POST @Consumes(MediaType.MULTIPART_FORM_DATA) public String postForm( @DefaultValue("true") @FormDataParam("enabled") boolean enabled, @FormDataParam("data") FileData bean, @FormDataParam("file") InputStream file, @FormDataParam("file") FormDataContentDisposition fileDisposition) {

// ...

}

its not clear to which package this FileData class Belongs . Its not specified in Docs

harshakumar347 avatar Jan 25 '18 11:01 harshakumar347