Re: Finding an ActionMapping

2004-08-05 Thread erikweber
Kishore, I appreciate it! Erik -Original Message- From: Kishore Senji <[EMAIL PROTECTED]> Sent: Aug 5, 2004 8:14 PM To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject: Re: Finding an ActionMapping protected ActionMapping getActionMapping(ActionMapping mapping, Stri

Re: Finding an ActionMapping

2004-08-05 Thread Kishore Senji
protected ActionMapping getActionMapping(ActionMapping mapping, String parameter){ if(mapping == null){ return null; } ModuleConfig mc = mapping.getModuleConfig(); ActionConfig acs[] = mc.findActionConfigs(); ActionConfig ac = null; for(int i=0; i wrote: > In Action.execute, is ther