First off I love this framework. One of my first questions is why does
Jersey accept object parameters with @POST or @PUT but not for @GET.
For Example
@Path("search")
public class Search {
@GET
public Payments getPayments(Payment payment) {
// error
...
}
@POST
public Payments getPayments(Payment payment) {
// compiles
...
}
}
Ideally I'd like to pass in an object to use for searching. Have I got
something backwards? It would seem like it POST would work then GET
would too...
--
Jeff Miller
Software Engineer
Atlatl, Inc.
jmiller_at_myatlatl.com