Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.db / org.gvsig.fmap.dal.db.lib / src / main / java / org / gvsig / fmap / dal / resource / db / DBParameters.java @ 40435

History | View | Annotate | Download (2.19 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
*
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
*
11
* This program 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 this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
* MA  02110-1301, USA.
20
*
21
*/
22

    
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2009 IVER T.I   {{Task}}
26
*/
27

    
28
package org.gvsig.fmap.dal.resource.db;
29

    
30
/**
31
 * Interface for describe parameters of a Data Base
32
 *
33
 *
34
 * @author jmvivo
35
 *
36
 */
37
public interface DBParameters {
38

    
39
        /**
40
         * Parameter name for <code>host</code>
41
         */
42
        public static final String HOST_PARAMTER_NAME = "host";
43

    
44
        /**
45
         * Parameter name for <code>port</code> 
46
         */
47
        public static final String PORT_PARAMTER_NAME = "port";
48

    
49
        /**
50
         * Parameter name for <code>data base name</code> 
51
         */
52
        public static final String DBNAME_PARAMTER_NAME = "dbname";
53

    
54
        /**
55
         * Parameter name for <code>user</code>
56
         */
57
        public static final String USER_PARAMTER_NAME = "dbuser";
58

    
59
        /**
60
         * Parameter name for <code>password</code>
61
         */
62
        public static final String PASSWORD_PARAMTER_NAME = "password";
63

    
64
        /**
65
         * Return the value of <code>host</code> parameter
66
         *
67
         * @return
68
         */
69
        public String getHost();
70

    
71
        /**
72
         * Return the value of <code>port</code> parameter
73
         *
74
         * @return
75
         */
76
        public Integer getPort();
77

    
78
        /**
79
         * Return the value of <code>data base name</code> parameter
80
         *
81
         * @return
82
         */
83
        public String getDBName();
84

    
85
        /**
86
         * Return the value of <code>password</code> parameter
87
         *
88
         * @return
89
         */
90
        public String getPassword();
91

    
92
        /**
93
         * Return the value of <code>user</code> parameter
94
         *
95
         * @return
96
         */
97
        public String getUser();
98

    
99
}