Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Peter Fagerlund
onsdagen den 13 november 2002 kl 23.56 skrev Dain Sundstrom: public interface MetaDataRepository { MetaDataRepository getParent(); void setParent(MetaDataRepository parent); Object get(Object attributeKey); void set(Object attributeKey, Object value); } maybe add void

RE: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Matt Munz
Dain, and the worst part is we have no control over it at runtime. It is way simpler. You'll see. It sounds like you have a vision. Please continue to make the effort to get the rest of us into the loop. I want to see also, but I'd prefer to do so sooner rather than later (not after it's

RE: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Bill Burke
-Original Message- From: [EMAIL PROTECTED] [mailto:jboss-development-admin;lists.sourceforge.net]On Behalf Of Dain Sundstrom Sent: Thursday, November 14, 2002 12:55 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] MetaDataRepository Proposal Hiram Chirino wrote: David

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Dain Sundstrom
Bill Burke wrote: In all honesty Dain, I don't think this is a simplification. And Hiram's right. Attaching interfaces with the aspect framework should give you the functionality you want here of adding read-ahead apis. How would it get into the invocation? EasilyIts just another

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Dain Sundstrom
Peter Fagerlund wrote: onsdagen den 13 november 2002 kl 23.56 skrev Dain Sundstrom: public interface MetaDataRepository { MetaDataRepository getParent(); void setParent(MetaDataRepository parent); Object get(Object attributeKey); void set(Object attributeKey, Object value); }

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Dain Sundstrom
Matt Munz wrote: and the worst part is we have no control over it at runtime. It is way simpler. You'll see. It sounds like you have a vision. Please continue to make the effort to get the rest of us into the loop. I want to see also, but I'd prefer to do so sooner rather than later

RE: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Bill Burke
-Original Message- From: [EMAIL PROTECTED] [mailto:jboss-development-admin;lists.sourceforge.net]On Behalf Of Dain Sundstrom Sent: Thursday, November 14, 2002 1:04 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-dev] MetaDataRepository Proposal Matt Munz wrote: and the worst

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-14 Thread Dain Sundstrom
Bill Burke wrote: We can just throw away any code I add later. It won't take very long.. What I am suggesting is a fairly small change. You guys are just getting way to excited about repository implementation details. I just I'm not focusing on implementation details, just throwing in

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-13 Thread David Jencks
Can you please give a fairly detailed use case for this idea and indicate why it is needed rather than a static division of metadata between that which is tied to an interceptor stack (the same for every invocation going through the stack) and that which is specific to a particular invocation (and

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-13 Thread Dain Sundstrom
David, Actually it simplifies the code. If you take a look at our interceptor stack most have a ton of code just to load and maintain the metadata, and the worst part is we have no control over it at runtime. It is way simpler. You'll see. The easiest case for me the read ahead

RE: [JBoss-dev] MetaDataRepository Proposal

2002-11-13 Thread Hiram Chirino
David, Actually it simplifies the code. If you take a look at our interceptor stack most have a ton of code just to load and maintain the metadata, Yes there is alot of Metadata now. 1/2 the ton of code that we have there is just taking XML and creating a metadata objects. I think that

Re: [JBoss-dev] MetaDataRepository Proposal

2002-11-13 Thread Dain Sundstrom
Hiram Chirino wrote: David, Actually it simplifies the code. If you take a look at our interceptor stack most have a ton of code just to load and maintain the metadata, Yes there is alot of Metadata now. 1/2 the ton of code that we have there is just taking XML and creating a metadata