View Javadoc

1   /*
2    * @(#)$Id: Service.java 689 2009-07-22 00:10:27Z bsigner $
3    *
4    * Author       :   Ueli Kurmann, igesture@uelikurmann.ch
5    *                                   
6    *                                   
7    * Purpose      :   Interface to be implemented which should be located by
8    *                  the Locator class.
9    *
10   * -----------------------------------------------------------------------
11   *
12   * Revision Information:
13   *
14   * Date             Who         Reason
15   *
16   * 23.03.2008       ukurmann    Initial Release
17   *
18   * -----------------------------------------------------------------------
19   *
20   * Copyright 1999-2009 ETH Zurich. All Rights Reserved.
21   *
22   * This software is the proprietary information of ETH Zurich.
23   * Use is subject to license terms.
24   * 
25   */
26  
27  
28  package org.ximtec.igesture.tool.locator;
29  
30  /**
31   * Interface to be implemented which should be located by the Locator class.
32   * 
33   * @version 1.0, Mar 2008
34   * @author Ueli Kurmann, igesture@uelikurmann.ch
35   * @author Beat Signer, signer@inf.ethz.ch
36   */
37  public interface Service {
38  
39     /**
40      * Returns the identifier of the service.
41      * @return the service's identifier.
42      */
43     String getIdentifier();
44  
45  }