How to Java annotate multiple form parameters of same name?
I have an API operation with one argument of type List<ItemType> where ItemType is an Enum. Following is the code snippet: @Path("evp/placeOrder")
@POST
@Consumes(MediaType.APPLICATION_FORM...