Please excuse this question, as it may be total AOP newbie material.
I am using the MethodInterceptor to intercept calls to ClassA.getByName(String name) and redirecting to ClassB.getByName(String name).
My question is how do I get the parameters from the call to ClassA and pass them to ClassB?

