Hubert Rabago wrote:

   public ActionForward execute(_usual_params) {
       RequestUtils.dispatch(this, _usual_params);
   }

This will work fine for SimpleDispatchAction, in fact I LOVE IT and I am going to do it, if you don't, but this would not replace DispatchAction, LookupDispatchAction or MappingDispatchAction, and there probably is a lot of code out there with those actions. You would have to provide the following four options.

   RequestUtils.dispatch(this,_usual_params);
   RequestUtils.lookupDispatch(this,_usual_params);
   RequestUtils.mappingDispatch(this,_usual_params);
   RequestUtils.simpleDispatch(this,_usual_params);

I want to emphasize, however, that RequestUtils.simpleDispatch(this,_usual_params) will do everything that the others do and do what they do more simply, but it is based on different data.

Michael





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



Reply via email to