Example: Maps of multipart/form-data

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2746

This topic has not yet been written. The content below is from the topic description.
Here's an example of of unmarshalling a Map of Customer objects which are JAXB annotated classes. @Path("/multipart") public class MyService { @PUT @Consumes("multipart/form-data") public void put(Map customers) { ... } }