Reports resource method parameters (annotated with @PathParam, @QueryParam, and so on) with unsupported types.
The type of the annotated parameter, field, or property must meet one of the following requirements:
String argumentvalueOf() or fromString() that accepts a single String argument,
for example, Integer.valueOf(String).
ParamConverterProvider JAX-RS extension SPI that returns a ParamConverter instance
capable of converting a string to a particular type.
List<T>, Set<T>, or SortedSet<T>,
where T satisfies 2, 3, or 4 above. The resulting collection is read-only.