Sergey Beryozkin created CXF-5065:
-------------------------------------

             Summary: Subresource operations do not see root resource Produces 
or Consumes annotations 
                 Key: CXF-5065
                 URL: https://issues.apache.org/jira/browse/CXF-5065
             Project: CXF
          Issue Type: Bug
          Components: JAX-RS
            Reporter: Sergey Beryozkin
            Assignee: Sergey Beryozkin


If we have 

{code:java}
@Path("/root")
@Produces("text/xml")
public class Root {
  @Path("/sub")  
  public SubRoot getSubRoot() {
  } 
}

public class SubRoot {

  @GET
  public Order get() {
  }
}
{code}

then SubRoot.get() method will not inherit Root's @Produces

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to