Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dataDB / src / org / gvsig / fmap / data / datastores / vectorial / db / jdbc / postgresql / PostgresqlExplorerParameters.java @ 22040

History | View | Annotate | Download (710 Bytes)

1
package org.gvsig.fmap.data.datastores.vectorial.db.jdbc.postgresql;
2

    
3
import org.gvsig.fmap.data.datastores.vectorial.db.jdbc.JDBCExplorerParameter;
4

    
5
public class PostgresqlExplorerParameters extends JDBCExplorerParameter {
6

    
7
        private boolean showInformationDBTables=false;
8

    
9
        public String getUrl() {
10
                return PostgresqlStoreUtils.getJDBCUrl(this.getHost(), this.getDb(),
11
                                this.getPort());
12

    
13
        }
14

    
15
        public String getDataExplorerName() {
16
                return PostgresqlExplorer.DATAEXPLORER_NAME;
17
        }
18

    
19
        public boolean isShowInformationDBTables() {
20
                return showInformationDBTables;
21
        }
22

    
23
        public void setShowInformationDBTables(boolean showInformationDBTables) {
24
                this.showInformationDBTables = showInformationDBTables;
25
        }
26

    
27
}