Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
Unknown
Description
If we have
@Path("/root") @Produces("text/xml") public class Root { @Path("/sub") public SubRoot getSubRoot() { } } public class SubRoot { @GET public Order get() { } }
then SubRoot.get() method will not inherit Root's @Produces