Statistics
| Revision:

root / trunk / libraries / libRemoteServices / src / org / gvsig / remoteClient / driver / wms / wms1_1_0 / WMSDriver1_1_0.java @ 2992

History | View | Annotate | Download (1.4 KB)

1
package org.gvsig.remoteClient.driver.wms.wms1_1_0;
2

    
3
import java.io.IOException;
4

    
5
import org.gvsig.remoteClient.descriptor.WMSCapabilities;
6
import org.gvsig.remoteClient.driver.wms.WMSDriver;
7
import org.gvsig.remoteClient.exception.UnsupportedVersionException;
8
import org.gvsig.remoteClient.exception.WMSException;
9
import org.gvsig.remoteClient.request.wms.GetCapabilitiesRequest;
10
import org.gvsig.remoteClient.request.wms.GetFeatureInfoRequest;
11
import org.gvsig.remoteClient.request.wms.GetMapRequest;
12

    
13

    
14
public class WMSDriver1_1_0 extends WMSDriver 
15
{
16
        public WMSCapabilities getCapabilities(GetCapabilitiesRequest req)
17
    throws UnsupportedVersionException, IllegalStateException, IOException
18
    {
19
                return null;
20
    }
21

    
22
        public byte[] getMap(GetMapRequest req)
23
        throws WMSException, IOException, NoSuchFieldException
24
        {
25
                return null;           
26
        }
27
        
28
        public byte[] getFeatureInfo(GetFeatureInfoRequest req)
29
        throws WMSException, IOException, NoSuchFieldException
30
        {
31
                return null;
32
        }
33

    
34
        public WMSCapabilities getCapabilities() throws UnsupportedVersionException, IllegalStateException, IOException {
35
                // TODO Auto-generated method stub
36
                return null;
37
        }
38

    
39
        public byte[] getMap() throws WMSException, IOException, NoSuchFieldException {
40
                // TODO Auto-generated method stub
41
                return null;
42
        }
43

    
44
        public byte[] getFeatureInfo() throws WMSException, IOException, NoSuchFieldException {
45
                // TODO Auto-generated method stub
46
                return null;
47
        }
48
}