--- [EMAIL PROTECTED] wrote:
> My parent Action : 
> public class CRMAction extends ActionSupport
>         @Override
>         public String execute() throws Exception {
>                 //do all tests (user logged, ...)
>                 //...
>                 return super.execute();
>         }
> }
> 
> My others Actions :
> public class LoginAction extends CRMAction {
>         public String myMethod () {
>                 //do something
>                 return "myForward";
>         }
> }
> 
> But I never go in CRMAction.execute()...

You never call super.execute() in your subclass.

d.


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to