RE: Override DispatchAction but keep the existing funcationallity

2003-02-03 Thread Jerome Jacobsen
Your CommonCode solution is the way I went (I called mine BaseActionHelper). Your subclass of DispatchAction would look something like this below. public abstract class MyDispatchAction extends DispatchAction { public ActionForward execute(ActionMapping mapping, ActionForm

RE: Override DispatchAction but keep the existing funcationallity

2003-02-03 Thread Jerome Jacobsen
Correction. Your MyDispatchAction would not be abstract. -Original Message- From: Jerome Jacobsen [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 11:29 AM To: Struts Users Mailing List Subject: RE: Override DispatchAction but keep the existing funcationallity Your

RE: Override DispatchAction but keep the existing funcationallity

2003-02-03 Thread Ashish Kulkarni
Mailing List Subject: RE: Override DispatchAction but keep the existing funcationallity Your CommonCode solution is the way I went (I called mine BaseActionHelper). Your subclass of DispatchAction would look something like this below. public abstract class MyDispatchAction