While discussing about that, a question comes in my mind.
Example:
public class A {
@GET
public Object get() {...}
}
@Path("whatever")
public class B extends A{
@PUT
public Object put() {...}
}
Does the root resource class B supports GET?
best regards
Stephan