Still digesting what you wrote... > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Leo Simons > > SAXTransformer.FACTORY_ROLE
Does this mean "Give me SAXTransformer as a Factory"? Is it some standard naming convention used - like: String ROLE = "my.Component"; String FACTORY_ROLE = ROLE + "Factory"; that the container can pick up and deliver a factory? Much like the ROLE + "Selector" we used to have (but useful this time)? In general, I'm more and more convinced that instead of splitting components between different lifestyles - ThreadSafe, SingleThreaded, Pooled - we should split them along stateful/stateless. This is something that is reflected in the client code as well. All stateful interfaces are treated by clients as if they were distinct objects with identity, while a client treats a stateless interface as a magic portal to some functionality (and doesn't care about identity). /LS --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
