package org.wamblee.system; /** * Service descriptor providing a description and characteristics * of the provided service. * * NOTE: The current implemention only stores the type of the * descriptor but his can be extended towards more complex rules * for matching services. */ public interface ServiceDescriptor { /** * Returns the service type. * @return Service type. */ Class getInterfaceType(); }