I am using struts 1.3
For the first phase of our project I had used DispatchAction and combined addUser,modifyUser,removeUser actions in a ManageUserAction class and a UserFormBean which all works good. Now I need to add some more functionality like changeManager, assignTask action methods. I am planning to add these action methods to use the same action class ManageUserAction but I might need to pass a different form bean for the new action methods I am adding. Right now I am calling differnt action mehtods using a method parameter. I am lost on how to make the action methods use a differnt formbean.
Please let me know if it is a good idea to use the same action class? any hints on how to do the action mapping?
Thanks