package org.wamblee.system; public interface ServiceRegistry { Service register(ProvidedServiceDescriptor aDescriptor, Object aService); void remove(Service aService); Service find(String aId); Service[] listAllServices(); }