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.h2 / src / main / java / org / gvsig / fmap / dal / store / h2 / H2SpatialExplorerParameters.java @ 43377

History | View | Annotate | Download (2.08 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.fmap.dal.store.h2;
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.JDBCServerExplorerParameters;
31

    
32
public class H2SpatialExplorerParameters extends
33
        JDBCServerExplorerParameters 
34
    implements
35
        H2SpatialConnectionParameters
36
    {
37
    
38
    private final H2SpatialConnectionParametersHelper helper;
39

    
40
    public H2SpatialExplorerParameters() {
41
        super(
42
                H2SpatialLibrary.NAME + "ServerExplorerParameters",
43
                H2SpatialLibrary.NAME
44
        );
45
        this.helper = new H2SpatialConnectionParametersHelper(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 Properties getProperties() {
61
        return this.helper.getProperties();
62
    }
63

    
64
    @Override
65
    public File getFile() {
66
        return this.helper.getFile();
67
    }
68
    
69
    @Override
70
    public void setFile(File database) {
71
        this.helper.setFile(database);
72
    }
73

    
74
}