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
{{ message }}
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.
Instead of generating multiple stubs/interfaces with just "Response get" methods, generate something more useful using the @path
I.E:
Instead of:
@get
@produces(
{"application/xml", "application/json" })
@path("/current/locationType/{locationType}")
Response get(@PathParam("locationType") String locationType);
Generate:
@get
@produces({"application/xml", "application/json" }
)
@path("/current/locationType/
{locationType}
")
Response getCurrentLocationType(@PathParam("locationType") String locationType);
Environment
Windows XP
The text was updated successfully, but these errors were encountered: