I've got a REST service set up to access information stored in a database.
I'd like to be able to access based on either an item's id or name.
So lets say I've got a record
name | id | description
mine | 65 | "my thing"
I'd like to be able to access this item through either:
myurl.com/items/65
myurl.com/items/mine
I'm using Jersey (Java library). Is there a way I can define the PathParam to accept either an int or a String WITHOUT using object.typeOf()?
I'd like to avoid this:
@PATH("/items/{identifier}
@GET
public String getItem(@PathParam("identifier") Object identifier){
if(identifier.typeOf().equals(String.typeOf()))....
}
Thanks
.classinstead of.typeOf()? – Jeremy Heiler May 12 '11 at 19:10