[jira] Resolved: (OWB-266) transitive interceptor bindings not applied to Bean subclasses

2010-02-16 Thread Eric Covener (JIRA)
[ https://issues.apache.org/jira/browse/OWB-266?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Eric Covener resolved OWB-266. -- Resolution: Fixed Fix Version/s: (was: 1.0.0) M4 transitive interceptor

Re: transitive interceptor bindings

2010-02-05 Thread Eric Covener
On Fri, Feb 5, 2010 at 1:34 AM, Gurkan Erdogdu cgurkanerdo...@gmail.com wrote: Hi Eric; I think that both @Binding2 and @Binding3 are inherited by sub-classes. @Inherited is used for getting annotations from subclass. @Binding1 is annotated with @Inherited therefore we must get @Binding1 and

transitive interceptor bindings

2010-02-04 Thread Eric Covener
I'm looking into a potential interceptor problem where the proper behavior of transitive interceptor bindings wrt @Inherited is a bit unclear. Anyone care to venture a guess at the desired behavior? Parent.java: @Binding1 public class Parent { public void interceptme

Re: transitive interceptor bindings

2010-02-04 Thread Sven Linstaedt
would not be intercepted. br, Sven -- sent by phone Am 04.02.2010 um 22:38 schrieb Eric Covener cove...@gmail.com: I'm looking into a potential interceptor problem where the proper behavior of transitive interceptor bindings wrt @Inherited is a bit unclear. Anyone care to venture a guess

Re: transitive interceptor bindings

2010-02-04 Thread Eric Covener
On Thu, Feb 4, 2010 at 5:06 PM, Sven Linstaedt sven.linsta...@googlemail.com wrote: Afaik @Inherited is only applied to annotation resolution if one uses the reflection API. I am not aware of this annotation also being checked for interceptor resolution. So as @Binding1 is @Inherited, both

[jira] Created: (OWB-266) transitive interceptor bindings not applied to Bean subclasses

2010-02-04 Thread Eric Covener (JIRA)
transitive interceptor bindings not applied to Bean subclasses -- Key: OWB-266 URL: https://issues.apache.org/jira/browse/OWB-266 Project: OpenWebBeans Issue Type: Bug

[jira] Commented: (OWB-266) transitive interceptor bindings not applied to Bean subclasses

2010-02-04 Thread Eric Covener (JIRA)
with @A, but not a subclass of @A. Should read X and Y intercept a class annotated with @A, but not a subclass of _the bean annotated with_ @A. transitive interceptor bindings not applied to Bean subclasses -- Key: OWB-266

Re: transitive interceptor bindings

2010-02-04 Thread Gurkan Erdogdu
to handle problem this way. Thanks; --Gurkan 2010/2/4 Eric Covener cove...@gmail.com I'm looking into a potential interceptor problem where the proper behavior of transitive interceptor bindings wrt @Inherited is a bit unclear. Anyone care to venture a guess at the desired behavior? Parent.java