On Thu, Jan 7, 2010 at 9:29 AM, Eric Covener <[email protected]> wrote:
> On Thu, Jan 7, 2010 at 9:15 AM, Gurkan Erdogdu <[email protected]>
> wrote:
>> No. EJB Interceptor specification defines Lifecycle callback methods as
>> follows
>>
>> If in Interceptor class
>> void <METHOD> (InvocationContext)
>>
>> If in bean class
>> void <METHOD>()
>
> Thanks -- is the convention that the lifecycle callbakcs in the
> Interceptor class just call ic.proceed() (but not returning the
> value) on their way out, or are these not typically chained the way
> @AroundInvoke are?
>
Finally found my way to EJB3 spec and it does seem that convention is
{
...
ic.proceed;
...
}
for lifecyele callback inside an Interceptor
--
Eric Covener
[email protected]