Example: Lists of multi-part data

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2720

This topic has not yet been written. The content below is from the topic description.
Here's an example again of unmarshalling a list of customers. @Path("/multipart") public class MyService { @PUT @Consumes("multipart/mixed") public void put(List customers) { ... } }