@Target(value={PARAMETER,METHOD}) @Retention(value=RUNTIME) public @interface Wrapped
i.e.
@PUT @Consumes("application/xml") public void put(@Wrapped User[] users);
User is a jaxb annotated class. The input should be:
<resteasy:collection xmlns:resteasy="http://jboss.org/resteasy" xmlns:ns2="whatever"> <ns2:user>...</ns2:user> <ns2:user>...</ns2:user> </resteasy:collection>
or @GET @Wrapped public User[] getUsers();
Copyright © 2021 JBoss by Red Hat. All rights reserved.