]
Xavier Coulon updated JBIDE-13003:
----------------------------------
Fix Version/s: (was: 4.3.0.Alpha1)
Affects Version/s: 4.3.x
No support for inheritance in JAX-RS API scan
---------------------------------------------
Key: JBIDE-13003
URL:
https://issues.jboss.org/browse/JBIDE-13003
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: webservices
Affects Versions: 4.0.0.Alpha2, 4.3.x
Reporter: Ron Ratovsky
Assignee: Xavier Coulon
Labels: jax-rs
Assume:
class BaseRest {
@POST
public Response save(Object o) {
....
}
}
@Path("/url")
class RealRest extends BaseRest {}
The JAX-RS tools won't add a "POST /url" entry to the JAX-RS calls
overview.
While not tested (due to another bug) - they may also apply to definitions of
@PathParam's in the parent class.