Revision 33983 branches/v2_0_0_prep/libraries/libRemoteServices/src/org/gvsig/remoteclient/wfs/request/WFSRequest.java

View differences:

WFSRequest.java
5 5
import java.net.ConnectException;
6 6
import java.net.UnknownHostException;
7 7

  
8
import org.gvsig.compat.net.ICancellable;
8 9
import org.gvsig.remoteclient.ogc.request.OGCRequest;
9 10
import org.gvsig.remoteclient.wfs.WFSProtocolHandler;
10 11
import org.gvsig.remoteclient.wfs.WFSRequestInformation;
......
74 75
	 * (non-Javadoc)
75 76
	 * @see org.gvsig.remoteclient.ogc.request.OGCRequest#sendRequest()
76 77
	 */
77
	public File sendRequest() throws ConnectException, UnknownHostException,
78
	public File sendRequest(ICancellable cancel) throws ConnectException, UnknownHostException,
78 79
			IOException {		
79 80
		if (status != null){
80 81
			((WFSProtocolHandler)protocolHandler).addLastWfsRequestInformation(createRequestInformation());
81 82
		}
82
		return super.sendRequest();
83
		return super.sendRequest(cancel);
83 84
	}
84 85
	
85 86
	/**

Also available in: Unified diff