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 @ 12947

History | View | Annotate | Download (4.14 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
package org.gvsig.raster.tilecache.io;
28

    
29
import javax.json.JsonObject;
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.json.JsonObjectBuilder;
34
import org.gvsig.tools.dynobject.DynClass;
35
import org.gvsig.tools.dynobject.DynObject;
36
import org.gvsig.tools.dynobject.exception.DynFieldNotFoundException;
37
import org.gvsig.tools.dynobject.exception.DynMethodException;
38
import org.gvsig.tools.persistence.PersistentState;
39
import org.gvsig.tools.persistence.exception.PersistenceException;
40

    
41
/**
42
 * Parameters for the WMTS provider
43
 *
44
 * @author Nacho Brodin (nachobrodin@gmail.com)
45
 */
46
public class TileServerExplorerParameters implements DataServerExplorerParameters {
47
        public static final String     DYNCLASS_NAME    = "TileExplorerParameters";
48

    
49
    /*
50
         * (non-Javadoc)
51
         * @see org.gvsig.fmap.dal.DataServerExplorerParameters#getExplorerName()
52
     */
53
    @Override
54
    public String getExplorerName() {
55
        return TileServerExplorer.NAME;
56
    }
57

    
58
    @Override
59
    public void clear() {
60
        // TODO Auto-generated method stub
61

    
62
    }
63

    
64
    @Override
65
    public DataParameters getCopy() {
66
        // TODO Auto-generated method stub
67
        return null;
68
    }
69

    
70
    @Override
71
    public void validate() throws ValidateDataParametersException {
72
        // TODO Auto-generated method stub
73

    
74
    }
75

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

    
81
    }
82

    
83
    @Override
84
    public void saveToState(PersistentState state) throws PersistenceException {
85
        // TODO Auto-generated method stub
86

    
87
    }
88

    
89
    @Override
90
    public void delegate(DynObject dynObject) {
91
        // TODO Auto-generated method stub
92

    
93
    }
94

    
95
    @Override
96
    public DynClass getDynClass() {
97
        // TODO Auto-generated method stub
98
        return null;
99
    }
100

    
101
    @Override
102
    public Object getDynValue(String name) throws DynFieldNotFoundException {
103
        // TODO Auto-generated method stub
104
        return null;
105
    }
106

    
107
    @Override
108
    public boolean hasDynValue(String name) {
109
        // TODO Auto-generated method stub
110
        return false;
111
    }
112

    
113
    @Override
114
    public void implement(DynClass dynClass) {
115
        // TODO Auto-generated method stub
116

    
117
    }
118

    
119
    @Override
120
    public Object invokeDynMethod(String name, Object[] context)
121
            throws DynMethodException {
122
        // TODO Auto-generated method stub
123
        return null;
124
    }
125

    
126
    @Override
127
    public Object invokeDynMethod(int code, Object[] context)
128
            throws DynMethodException {
129
        // TODO Auto-generated method stub
130
        return null;
131
    }
132

    
133
    @Override
134
    public void setDynValue(String name, Object value)
135
            throws DynFieldNotFoundException {
136
        // TODO Auto-generated method stub
137

    
138
    }
139

    
140
    @Override
141
    public String getProviderName() {
142
        return TileServerExplorer.NAME; 
143
    }
144

    
145
    @Override
146
    public byte[] toByteArray() {
147
        return null;
148
    }
149

    
150
    public JsonObject toJson() {
151
        return null;
152
    }
153

    
154
    public JsonObjectBuilder toJsonBuilder() {
155
        return null;
156
    }
157

    
158
    public void fromJson(JsonObject json) {
159
    }
160

    
161
}