View Javadoc

1   /**
2    * 2014, Digitalis Informatica. All rights reserved. Distribuicao e Gestao de Informatica, Lda. Estrada de Paco de Arcos
3    * num.9 - Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21 4408999 http://www.digitalis.pt
4    */
5   
6   package pt.digitalis.dif.dem.interfaces;
7   
8   import pt.digitalis.dif.exception.InternalFrameworkException;
9   
10  /**
11   * Interface to declare the DIF API's
12   * 
13   * @author Luis Pinto <a href="mailto:lpinto@digitalis.pt">lpinto@digitalis.pt</a><br/>
14   * @created Apr 15, 2014
15   */
16  public interface IDIFAPI {
17  
18      /**
19       * API initialize
20       * 
21       * @throws InternalFrameworkException
22       */
23      public void initialize() throws InternalFrameworkException;
24  
25      /**
26       * The API order on the DIF universe
27       * 
28       * @return the order
29       */
30      public Integer order();
31  }