Hi all I am new to JSR-133 I feel comfortable to this restful style programming. But I have a question. I cannot find a @PostParam or something like that annotation. I need this annotation for something like this :
@POST
@Path("/addUser")
public void addUser(@PostParam("name") String name ,
@PostParam("year") int year)
{...}
I feel it is very intuitive , but I cannot find such annotations , why ?
Or did I miss anything ?
