RE: Request Processor validation Question

2005-03-14 Thread Antony Joseph
Correction. Default implementation uses any configured roles. Your implementation can override this and implement whatever logic you want. - Original Message - From: "Antony Joseph" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Subject: RE: Request Pro

RE: Request Processor validation Question

2005-03-14 Thread Antony Joseph
ailing List" Subject: RE: Request Processor validation Question Date: Mon, 14 Mar 2005 10:18:34 -0600 > > If I use the processRoles(), does that mean I have to use the J2EE > authentication mechanism for web applications? Using the container > and declare the applications declarat

RE: Request Processor validation Question

2005-03-14 Thread Scott Purcell
List Subject: Re: Request Processor validation Question Hi Scott, Check the javadocs for the RequestProcessor. Any method which has an ActionMapping as an argument can be used to figure out the action (ex: mapping.getPath()). If you plan to do authorization the method processRoles() is a good

Re: Request Processor validation Question

2005-03-14 Thread Antony Joseph
Hi Scott, Check the javadocs for the RequestProcessor. Any method which has an ActionMapping as an argument can be used to figure out the action (ex: mapping.getPath()). If you plan to do authorization the method processRoles() is a good candidate to be overriden. - Original Message -