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

View differences:

WMSDriver1_1_0.java
2 2

  
3 3
import java.io.IOException;
4 4

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

  
12 13

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

  
21 22
	public byte[] getMap(GetMapRequest req)
......
29 30
	{
30 31
		return null;
31 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
	}
32 48
}

Also available in: Unified diff