Re: calling particular method in the interceptor

2007-05-24 Thread Jeromy Evans
public String intercept(ActionInvocation actionInvocation) throws Exception { I wouldn't do it, but actionInvocation provides information about the action and method being invoked. Your interceptor could change its behaviour based on the action name/class or method. The preferred approach

Re: calling particular method in the interceptor

2007-05-24 Thread sudeepj2ee
Thanks Jeromy it really worked Jeromy Evans - Blue Sky Minds wrote: public String intercept(ActionInvocation actionInvocation) throws Exception { I wouldn't do it, but actionInvocation provides information about the action and method being invoked. Your interceptor could change its