public void advise(ComponentMethodInvocation invocation)
{
// Don't even bother with proceed() this time, which is OK (but
// somewhat rare).
MethodInvocationResult result = targetMethodAccess.invoke(invocation.getInstance(), invocation
.getParameter(0), invocation.getParameter(1));
invocation.overrideResult(result.getReturnValue());
}
});