Re: On Martin Cooper's DownloadAction...

2004-09-22 Thread Frank W. Zammetti (MLists)
The way I envision it is that the app will have a file system-based download by default, and will also have in place the capability to download from a user-defined database if the user wants to, but the app would in no way, by default, require a database. Probably something as simple as

Re: On Martin Cooper's DownloadAction...

2004-09-21 Thread Niall Pemberton
] To: Struts Developers List [EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 8:05 PM Subject: RE: On Martin Cooper's DownloadAction... Rather than adding lots of new attributes to the existing action mapping element, maybe you should add your properties to an ActionConfig sub-class and use nested set

RE: On Martin Cooper's DownloadAction...

2004-09-21 Thread Deadman, Hal
] -Original Message- From: Frank W. Zammetti (MLists) [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 3:40 PM To: Struts Developers List Subject: Re: On Martin Cooper's DownloadAction... You guys are frankly delving into some things I haven't been exposed to before... I'm doing some

Re: On Martin Cooper's DownloadAction...

2004-09-21 Thread Joe Germuska
(1) Extend ActionMapping and have accessors and mutators for all the extra attributes needed (whatever they may actually be, still open for debate) Admitting that I haven't been following this thread closely... please, base the Action on an interface, not a concrete subclass of ActionMapping

Re: On Martin Cooper's DownloadAction...

2004-09-21 Thread Frank W. Zammetti (MLists)
Did you really mean to say don't base the ACTION on a concrete subclass? If so, I'm a bit confused (which is my usual state of being, so all is well)... The way I am looking at it, the only thing I'm extending is the ActionConfig, which is a class. The Action Martin wrote of course extends

RE: On Martin Cooper's DownloadAction...

2004-09-21 Thread Deadman, Hal
see where any other interfaces would help. I think the fact that StreamInfo is an interface is enough. -Original Message- From: Frank W. Zammetti (MLists) [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 4:05 PM To: Struts Developers List Subject: Re: On Martin Cooper's

RE: On Martin Cooper's DownloadAction...

2004-09-21 Thread Joe Germuska
for deciding how to configure the ActionMapping which gets passed in there. Sorry if I increased the confusion. Joe -Original Message- From: Frank W. Zammetti (MLists) [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 21, 2004 4:05 PM To: Struts Developers List Subject: Re: On Martin Cooper's

Re: On Martin Cooper's DownloadAction...

2004-09-21 Thread Martin Cooper
Wow, I didn't expect my quick little abstract class to generate quite this much discussion! ;-) But since my name is now in the Subject line, I guess I should say something... My thinking was that the class I put up for perusal was about as much as I think we should add to Struts itself, in the