]
Dmitrii Bocharov updated JBIDE-13003:
-------------------------------------
Fix Version/s: 4.5.x
(was: 4.4.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.Alpha1, 4.0.0.Alpha2
Reporter: Ron Ratovsky
Assignee: Xavier Coulon
Labels: jax-rs
Fix For: 4.5.x
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.