Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] the around pointcut

I am trying to intercept a function which performs some basic calculation stuff and returns an int value.
 
public int xyz(int a, int b, int c) {
....
return a+b+c;
}
 
i want to intercept the call/execution(its in a web service), change one of the arguments, i.e. say, value of argument from 10 to 20, then let it pass and continue normal execution. I tried using the around() point cut, but i still get the same output.


Sunny...as always
-----------------
http://brokenshard.blogspot.com


Yahoo! Photos – Showcase holiday pictures in hardcover
Photo Books. You design it and we’ll bind it!

Back to the top