Hello,
I have a method like
public int retrieveSomething( String agentID, IntHolder value){
value = new IntHolder();
...
value = <assign something>
}
This method is intercepted, but there is a problem with "value" parameter. It is not updated by method.proceed() invocation.
How can I walkaround this problem?
best regards
Piotr Rezmer

