eclipse-ee4j / jersey

Eclipse Jersey Project - Read our Wiki:
https://github.com/eclipse-ee4j/jersey/wiki
Other
691 stars 357 forks source link

multipart/mixed example issue #3764

Open jerseyrobot opened 6 years ago

jerseyrobot commented 6 years ago

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

jerseyrobot commented 6 years ago