users@jsr311.java.net

_at_GET, using objects as method parameters

From: Jeff Miller <jmiller_at_myatlatl.com>
Date: Fri, 07 Mar 2008 11:28:55 -0500

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