This content has been marked as final.
Show 2 replies
-
1. Re: How to get the returned value from an intercepted method
kabirkhan Mar 25, 2009 2:59 PM (in response to kashmr)public Object invoke(Invocation inv) throws Throwable
{
Integer i = (Integer)inv.invokeNext();
//Use i
return i;
} -
2. Re: How to get the returned value from an intercepted method
kashmr Mar 25, 2009 3:48 PM (in response to kashmr)Oh thats easy.
I thought I would have to use some method from InvocationResponse in order to get this value.
Thanks for the quick response.