View Javadoc

1   /**
2    * - Digitalis Internal Framework v2.0 - (C) 2007, Digitalis Informatica. Distribuicao e Gestao de Informatica, Lda.
3    * Estrada de Paco de Arcos num.9 - Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21 4408999
4    * http://www.digitalis.pt
5    */
6   package pt.digitalis.dif.dem.interfaces;
7   
8   /**
9    * This interface represents an Application configuration, that will be execute before the application init method.
10   * 
11   * @author Luis Pinto <a href="mailto:lpinto@digitalis.pt">lpinto@digitalis.pt</a><br/>
12   * @created Mar 11, 2014
13   */
14  public interface IApplicationConfiguration {
15  
16      /**
17       * Process the configurations
18       */
19      public void processConfigurations();
20  }