You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. a Resource class with annotated method @Path("/users/{userid}
public View getUser(@PathParam("userid") String userId)
2. try to generate Path: Path.to(MyResource.class, "getUser")
What is the expected output?
the path.
What do you see instead?
stack trace!
Please provide any additional information below.
Path.to() should accept additional parameters (vararg or how this thing is
called) containing the path parameters, which would then be passed on to
build():
path = uriinfo.getBaseUriBuilder().path(clazz).path(clazz, method).build(...).toURL().getPath();
Original issue reported on code.google.com by [email protected] on 1 Mar 2012 at 3:40
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 1 Mar 2012 at 3:40The text was updated successfully, but these errors were encountered: