I'm currently using Restlet as follows:
@Get
public List<Foo> retrieve() {
if (getQuery().isEmpty()) { // if no args are given
return Foo.getAll();
}
// pull out params manually
float lat = getQuery().getFirstValue("lat");
// ...
}
What I'd rather do is:
@Get
public List<Foo> retrieve() {
return Foo.getAll();
}
@Get
public List<Foo> retrieve(float lat) {
// ...
}
Then if the query didn't match one of the method signatures, Restlet would automatically handle the error. Is there any way to do this?
(I'm using Google App Engine.)