Timers appear to be persistent in glassfish so now canceling any old
[utils] / system / general / src / main / java / org / wamblee / system / ServiceDescriptor.java
1 package org.wamblee.system;
2
3 /**
4  * Service descriptor providing a description and characteristics
5  * of the provided service. 
6  * 
7  * NOTE: The current implemention only stores the type of the 
8  * descriptor but his can be extended towards more complex rules
9  * for matching services. 
10  */
11 public interface ServiceDescriptor {
12         
13         /**
14          * Returns the service type. 
15          * @return Service type. 
16          */
17         Class getInterfaceType();
18 }