Project

General

Profile

Download (1.83 KB) Statistics
| Branch: | Revision:

git_sitools_idoc / flarecast / workspace / sitools-install-izpack / src / fr / cnes / sitools / izpack / model / JDBCConnectionModel.java @ master

1
/*******************************************************************************
2
 * Copyright 2010-2014 CNES - CENTRE NATIONAL d'ETUDES SPATIALES
3
 *
4
 * This file is part of SITools2.
5
 *
6
 * SITools2 is free software: you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License as published by
8
 * the Free Software Foundation, either version 3 of the License, or
9
 * (at your option) any later version.
10
 *
11
 * SITools2 is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with SITools2.  If not, see <http://www.gnu.org/licenses/>.
18
 ******************************************************************************/
19
package fr.cnes.sitools.izpack.model;
20

    
21

    
22
/**
23
 * Model to store informations about JDBC connection
24
 * 
25
 * @author m.gond
26
 * 
27
 */
28
public interface JDBCConnectionModel {
29

    
30
  /**
31
   * Gets the dbUrl value
32
   * 
33
   * @return the dbUrl
34
   */
35
  public String getDbUrl();
36

    
37
  /**
38
   * Gets the dbUser value
39
   * 
40
   * @return the dbUser
41
   */
42
  public String getDbUser();
43

    
44
  /**
45
   * Gets the dbPassword value
46
   * 
47
   * @return the dbPassword
48
   */
49
  public String getDbPassword();
50

    
51
  /**
52
   * Gets the password used for first connection
53
   * 
54
   * @return the password used for first connection
55
   */
56
  public String getDbConnectionPassword();
57

    
58
  /**
59
   * Gets the dbDriverClassName value
60
   * 
61
   * @return the dbDriverClassName
62
   */
63
  public String getDbDriverClassName();
64

    
65
  /**
66
   * Gets the dbType value
67
   * 
68
   * @return the dbType
69
   */
70
  public String getDbType();
71

    
72
  /**
73
   * Gets the dbSchema value
74
   * 
75
   * @return the dbSchema
76
   */
77
  public String getDbSchema();
78

    
79
}