Re: Find action method in interceptor ( One action class with lots of action methods in it)

2014-06-11 Thread Christoph Nenning
Please consider below action class: public class MyAction extends ActionSupport{ @Action(action1) public String action1(){ } @Action(action2) public String action2(){ } @Action(action3) public String

Re: Find action method in interceptor ( One action class with lots of action methods in it)

2014-06-07 Thread Antonios Gkogkakis
Hi Alireza, I believe you can have the method name of the executed action like this actionInvocation.getProxy().getMethod() Antonios On 7 June 2014 06:29, Alireza Fattahi afatt...@yahoo.com.invalid wrote: Please consider below action class: public class MyAction extends ActionSupport{

Find action method in interceptor ( One action class with lots of action methods in it)

2014-06-06 Thread Alireza Fattahi
Please consider below action class:  public class MyAction extends ActionSupport{            @Action(action1)       public String action1(){           }                @Action(action2)        public String action2(){             }       @Action(action3)       public String action3(){