interceptor method:
| public Object invoke(Invocation inv) throws Exception
| {
| MethodInvocation mi = (MethodInvocation)inv;
| Object[] args = mi.getArguments();
| args[0] = "Changed"; //Must be of the same type as the original
parameter
| mi.setArguments(args);
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4204140#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...