This content has been marked as final.
Show 1 reply
-
1. Re: Post Method Interceptor/Proxy for EntityBeans
adrian.brock Nov 2, 2002 7:50 AM (in response to mirza_mohsin_beg)An interceptor looks like this, obviously simplified.
Look in org.jboss.ejb.plugins for examples.
public Object invoke(Invocation mi)
{
// Before processing
Object result = invokeNext(mi);
// After processing
return result;
}