Statistics
| Revision:

gvsig-raster / org.gvsig.raster.tilecache / trunk / org.gvsig.raster.tilecache / org.gvsig.raster.tilecache.io / src / main / java / org / gvsig / raster / tilecache / io / TileServerExplorerParameters.java @ 2477

History | View | Annotate | Download (3.3 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.tilecache.io;
29

    
30
import org.gvsig.fmap.dal.DataParameters;
31
import org.gvsig.fmap.dal.DataServerExplorerParameters;
32
import org.gvsig.fmap.dal.exception.ValidateDataParametersException;
33
import org.gvsig.tools.dynobject.DynClass;
34
import org.gvsig.tools.dynobject.DynObject;
35
import org.gvsig.tools.dynobject.exception.DynFieldNotFoundException;
36
import org.gvsig.tools.dynobject.exception.DynMethodException;
37
import org.gvsig.tools.persistence.PersistentState;
38
import org.gvsig.tools.persistence.exception.PersistenceException;
39

    
40
/**
41
 * Parameters for the WMTS provider
42
 * @author Nacho Brodin (nachobrodin@gmail.com)
43
 */
44
public class TileServerExplorerParameters implements DataServerExplorerParameters {
45
        public static final String     DYNCLASS_NAME    = "TileExplorerParameters";
46
        
47
        /*
48
         * (non-Javadoc)
49
         * @see org.gvsig.fmap.dal.DataServerExplorerParameters#getExplorerName()
50
         */
51
        public String getExplorerName() {
52
                return TileServerExplorer.NAME;
53
        }
54

    
55
        public void clear() {
56
                // TODO Auto-generated method stub
57
                
58
        }
59

    
60
        public DataParameters getCopy() {
61
                // TODO Auto-generated method stub
62
                return null;
63
        }
64

    
65
        public void validate() throws ValidateDataParametersException {
66
                // TODO Auto-generated method stub
67
                
68
        }
69

    
70
        public void loadFromState(PersistentState state)
71
                        throws PersistenceException {
72
                // TODO Auto-generated method stub
73
                
74
        }
75

    
76
        public void saveToState(PersistentState state) throws PersistenceException {
77
                // TODO Auto-generated method stub
78
                
79
        }
80

    
81
        public void delegate(DynObject dynObject) {
82
                // TODO Auto-generated method stub
83
                
84
        }
85

    
86
        public DynClass getDynClass() {
87
                // TODO Auto-generated method stub
88
                return null;
89
        }
90

    
91
        public Object getDynValue(String name) throws DynFieldNotFoundException {
92
                // TODO Auto-generated method stub
93
                return null;
94
        }
95

    
96
        public boolean hasDynValue(String name) {
97
                // TODO Auto-generated method stub
98
                return false;
99
        }
100

    
101
        public void implement(DynClass dynClass) {
102
                // TODO Auto-generated method stub
103
                
104
        }
105

    
106
        public Object invokeDynMethod(String name, DynObject context)
107
                        throws DynMethodException {
108
                // TODO Auto-generated method stub
109
                return null;
110
        }
111

    
112
        public Object invokeDynMethod(int code, DynObject context)
113
                        throws DynMethodException {
114
                // TODO Auto-generated method stub
115
                return null;
116
        }
117

    
118
        public void setDynValue(String name, Object value)
119
                        throws DynFieldNotFoundException {
120
                // TODO Auto-generated method stub
121
                
122
        }
123

    
124
}