Statistics
| Revision:

root / trunk / libraries / libRemoteServices / src / org / gvsig / remoteClient / driver / wms / wms1_1_1 / WMSDriver1_1_1.java @ 2992

History | View | Annotate | Download (1.49 KB)

1
package org.gvsig.remoteClient.driver.wms.wms1_1_1;
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
/**
15
 * class that describes the interface of a WMS1.1.1 driver.
16
 * @author Laura Diaz
17
*/
18
public class WMSDriver1_1_1 extends WMSDriver
19
{
20
        public WMSCapabilities getCapabilities(GetCapabilitiesRequest req)
21
    throws UnsupportedVersionException, IllegalStateException, IOException
22
    {
23
                return null;
24
    }
25

    
26
        public byte[] getMap(GetMapRequest req)
27
        throws WMSException, IOException, NoSuchFieldException
28
        {
29
                return null;           
30
        }
31
        
32
        public byte[] getFeatureInfo(GetFeatureInfoRequest req)
33
        throws WMSException, IOException, NoSuchFieldException
34
        {
35
                return null;
36
        }
37

    
38
        public WMSCapabilities getCapabilities() throws UnsupportedVersionException, IllegalStateException, IOException {
39
                // TODO Auto-generated method stub
40
                return null;
41
        }
42

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

    
48
        public byte[] getFeatureInfo() throws WMSException, IOException, NoSuchFieldException {
49
                // TODO Auto-generated method stub
50
                return null;
51
        }
52
}