Statistics
| Revision:

gvsig-raster / org.gvsig.raster.postgis / trunk / org.gvsig.raster.postgis / org.gvsig.raster.postgis.io / src / main / java / org / gvsig / raster / postgis / io / PostGISRasterServerExplorer.java @ 890

History | View | Annotate | Download (2.73 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.raster.postgis.io;
29

    
30
import java.util.List;
31

    
32
import org.gvsig.fmap.dal.DataServerExplorerParameters;
33
import org.gvsig.fmap.dal.DataStoreParameters;
34
import org.gvsig.fmap.dal.NewDataStoreParameters;
35
import org.gvsig.fmap.dal.exception.DataException;
36
import org.gvsig.fmap.dal.spi.DataServerExplorerProvider;
37
import org.gvsig.fmap.dal.spi.DataServerExplorerProviderServices;
38

    
39
public class PostGISRasterServerExplorer implements DataServerExplorerProvider {
40

    
41
        public DataServerExplorerProviderServices getServerExplorerProviderServices() {
42
                // TODO Auto-generated method stub
43
                return null;
44
        }
45

    
46
        public boolean add(String provider, NewDataStoreParameters parameters,
47
                        boolean overwrite) throws DataException {
48
                // TODO Auto-generated method stub
49
                return false;
50
        }
51

    
52
        public boolean canAdd() {
53
                // TODO Auto-generated method stub
54
                return false;
55
        }
56

    
57
        public boolean canAdd(String storeName) throws DataException {
58
                // TODO Auto-generated method stub
59
                return false;
60
        }
61

    
62
        public NewDataStoreParameters getAddParameters(String storeName)
63
                        throws DataException {
64
                // TODO Auto-generated method stub
65
                return null;
66
        }
67

    
68
        public List getDataStoreProviderNames() {
69
                // TODO Auto-generated method stub
70
                return null;
71
        }
72

    
73
        public DataServerExplorerParameters getParameters() {
74
                // TODO Auto-generated method stub
75
                return null;
76
        }
77

    
78
        public String getProviderName() {
79
                // TODO Auto-generated method stub
80
                return null;
81
        }
82

    
83
        public List list() throws DataException {
84
                // TODO Auto-generated method stub
85
                return null;
86
        }
87

    
88
        public List list(int mode) throws DataException {
89
                // TODO Auto-generated method stub
90
                return null;
91
        }
92

    
93
        public void remove(DataStoreParameters parameters) throws DataException {
94
                // TODO Auto-generated method stub
95
                
96
        }
97

    
98
        public void dispose() {
99
                // TODO Auto-generated method stub
100
                
101
        }
102
        
103
}