Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.sqlite / org.gvsig.sqlite.provider / src / main / java / org / gvsig / sqlite / dal / SQLiteExplorerParameters.java @ 47456

History | View | Annotate | Download (2.52 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
 */
25
package org.gvsig.sqlite.dal;
26

    
27
import java.io.File;
28
import java.util.Properties;
29
import org.gvsig.fmap.dal.exception.ValidateDataParametersException;
30
import org.gvsig.fmap.dal.store.jdbc.JDBCServerExplorerParametersBase;
31

    
32
public class SQLiteExplorerParameters extends
33
        JDBCServerExplorerParametersBase 
34
    implements
35
        SQLiteConnectionParameters
36
    {
37
    
38
    private final SQLiteConnectionParametersHelper helper;
39

    
40
    public SQLiteExplorerParameters() {
41
        super(
42
                SQLiteLibrary.NAME + "ServerExplorerParameters",
43
                SQLiteLibrary.NAME
44
        );
45
        this.helper = new SQLiteConnectionParametersHelper(this);
46
    }
47

    
48
    @Override
49
    public String getUrl() {
50
        return this.helper.getUrl();
51
    }
52
    
53
    @Override
54
    public void validate() throws ValidateDataParametersException {
55
        this.helper.validate();
56
        super.validate();
57
    }
58

    
59
    @Override
60
    public boolean getEnableLoadExtension() {
61
        return this.helper.getEnableLoadExtension();
62
    }
63

    
64
    @Override
65
    public boolean getEnableSharedCache() {
66
        return this.helper.getEnableSharedCache();
67
    }
68

    
69
    @Override
70
    public void setEnableLoadExtension(boolean v) {
71
        this.helper.setEnableLoadExtension(v);
72
    }
73

    
74
    @Override
75
    public void setEnableSharedCache(boolean v) {
76
        this.helper.setEnableSharedCache(v);
77
    }
78

    
79
    @Override
80
    public Properties getProperties() {
81
        return this.helper.getProperties();
82
    }
83

    
84
    @Override
85
    public File getFile() {
86
        return this.helper.getFile();
87
    }
88
    
89
    @Override
90
    public void setFile(File database) {
91
        this.helper.setFile(database);
92
    }
93

    
94

    
95
}