1 /**
2 * 2009, 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.utils.configurations;
7
8 import java.util.Properties;
9
10 /**
11 * @author Luis Pinto <a href="mailto:lpinto@digitalis.pt">lpinto@digitalis.pt</a><br/>
12 * @created Jan 8, 2014
13 */
14 public interface IApplicationModelConfigurations {
15
16 /**
17 * Get the all database configurations for the application
18 *
19 * @return the database configurations
20 */
21 public Properties getAllDatabaseConfigurations();
22
23 /**
24 * Get the custom database configurations for the application
25 *
26 * @return the database configurations
27 */
28 public Properties getCustomDatabaseConfigurations();
29 }