1 package org.wamblee.system;
4 * Represents a running service.
8 public interface Service {
11 * Gets the ide of the service in the registry.
17 * Gets the descriptor of the service.
20 ProvidedInterfaceDescriptor getDescriptor();
23 * Returns a reference to the running service.
26 <T> T reference(Class<T> aClass);