Hi,
I only skimmed through the javadoc and it doesn't seem to be what I'm
looking for. Will look at it again later.
Basically what I'm looking for is if I'm sending a request:
http://www.foo.com/me/arg12'3
and I have
@Path("me/{arg}")
@Get
public String doIt(PathParam("arg") String filtered) {
return filtered;
}
I want to be able to remove the single quote from the path argument before
it gets passed to filtered. So the method should just return "arg123".
-Toffer
--
View this message in context: http://jersey.576304.n2.nabble.com/MessageBodyReader-for-PathParam-tp5512647p5528437.html
Sent from the Jersey mailing list archive at Nabble.com.