interceptors don't support inheritance without an overridden method annotated
with @AroundInvoke
------------------------------------------------------------------------------------------------
Key: OWB-515
URL: https://issues.apache.org/jira/browse/OWB-515
Project: OpenWebBeans
Issue Type: Bug
Components: Interceptor and Decorators
Affects Versions: 1.1.0
Reporter: Gerhard Petracek
Assignee: Gurkan Erdogdu
Priority: Minor
workaround:
@Override
@AroundInvoke
public Object invoke(InvocationContext context) throws Exception {
return super.invoke(context);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.