In BaseServiceBroker, how are the services supposed to be stored in the
Services hashtable?

services.put(name, service) or services.put(className, service) ?

Within getServiceInstance(String name),

            service.setServiceBroker(this);
            service.setName(name);
            services.put(name, service);

But there's code elsewhere which attempts to retrieve the service by
classname...

Kelvin


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to