Clarify if MBR/MBW should see annotations from interfaces and concrete classes
Open
Component: spec
- Dominant language
- Java
- Stars
- 400
- Forks
- 143
- PR merge metrics
- No merged PRs in 30d
Description
Given
```
public interface RootInterface {
@GET
@Produces
String get();
}
public class RootImpl implements RootInterface {
@A
String get();
}
```
should MBR and MBW see @GET + @Produces only or @GET + @Produces + @A where @A is a custom non-JAX-RS annotation ?
Proposal: update the Annotation Inheritance spec text accordingly, probably makes sense to avoid merging but I'm not sure
Thanks
Contributor guide
Assessment
This issue has not been assessed yet.