Uses of Class
org.gvsig.remoteclient.wfs.WFSStatus

Packages that use WFSStatus
org.gvsig.remoteclient.wfs   
org.gvsig.remoteclient.wfs.edition   
org.gvsig.remoteclient.wfs.filters.filterencoding   
org.gvsig.remoteclient.wfs.request   
org.gvsig.remoteclient.wfs.wfs_1_0_0   
org.gvsig.remoteclient.wfs.wfs_1_0_0.request   
org.gvsig.remoteclient.wfs.wfs_1_1_0   
org.gvsig.remoteclient.wfs.wfs_1_1_0.request   
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs
 

Methods in org.gvsig.remoteclient.wfs with parameters of type WFSStatus
protected abstract  WFSDescribeFeatureTypeRequest WFSProtocolHandler.createDescribeFeatureTypeRequest(WFSStatus status)
           
protected abstract  WFSGetFeatureRequest WFSProtocolHandler.createGetFeatureRequest(WFSStatus status)
           
protected abstract  WFSTLockFeatureRequest WFSProtocolHandler.createLockFeatureRequest(WFSStatus status)
           
protected abstract  WFSTransactionRequest WFSProtocolHandler.createTransactionRequest(WFSStatus status)
           
 java.io.File WFSProtocolHandler.describeFeatureType(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Builds a describeFeatureType request that is sent to the WFS the response will be parse to extract the data needed by the WFS client
 java.io.File WFSClient.describeFeatureType(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          The function of the DescribeFeatureType operation is to generate a schema description of feature types serviced by a WFS implementation.
 void WFSProtocolHandler.getCapabilities(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Builds a GetCapabilities request that is sent to the WFS the response will be parse to extract the data needed by the WFS client
 void WFSClient.getCapabilities(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Every OGC Web Service (OWS), including a Web Feature Service, must have the ability to describe its capabilities by returning service metadata in response to a GetCapabilities request.
 java.io.File WFSProtocolHandler.getFeature(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Builds a getFeature request that is sent to the WFS the response will be parse to extract the data needed by the WFS client
 java.io.File WFSClient.getFeature(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          The GetFeature operation allows retrieval of features from a web feature service.
 void WFSProtocolHandler.lockFeature(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Builds a lockFeature request that is sent to the WFS the response will be parse to extract the data needed by the WFS client
 void WFSClient.lockFeature(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Web connections are inherently stateless.
protected abstract  boolean WFSProtocolHandler.parseLockFeature(java.io.File f, java.lang.String nameSpace, WFSStatus status)
          parses the data retrieved by the LockFeature operation
protected abstract  boolean WFSProtocolHandler.parseTransaction(java.io.File f, WFSStatus status)
          parses the data retrieved by the transaction operation
 void WFSProtocolHandler.transaction(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          Builds a transaction request that is sent to the WFS the response will be parse to extract the data needed by the WFS client
 void WFSClient.transaction(WFSStatus status, boolean override, org.gvsig.compat.net.ICancellable cancel)
          The Transaction operation is used to describe data transformation operations that are to be applied to web accessible feature instances.
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.edition
 

Fields in org.gvsig.remoteclient.wfs.edition declared as WFSStatus
protected  WFSStatus WFSTOperation.wfsStatus
           
 

Constructors in org.gvsig.remoteclient.wfs.edition with parameters of type WFSStatus
WFSTDeleteOperation(WFSStatus wfsStatus, java.lang.String id)
           
WFSTInsertOperation(WFSStatus wfsStatus)
           
WFSTTransaction(WFSStatus wfsStatus)
           
WFSTUpdateOperation(WFSStatus wfsStatus, java.lang.String id)
           
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.filters.filterencoding
 

Constructors in org.gvsig.remoteclient.wfs.filters.filterencoding with parameters of type WFSStatus
FilterEncoding(WFSStatus status)
          Create a new Filter Encoding Parser
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.request
 

Fields in org.gvsig.remoteclient.wfs.request declared as WFSStatus
protected  WFSStatus WFSRequest.status
           
 

Constructors in org.gvsig.remoteclient.wfs.request with parameters of type WFSStatus
WFSDescribeFeatureTypeRequest(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSGetFeatureRequest(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSRequest(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSTLockFeatureRequest(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSTransactionRequest(WFSStatus status, WFSProtocolHandler protocolHandler)
           
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.wfs_1_0_0
 

Methods in org.gvsig.remoteclient.wfs.wfs_1_0_0 with parameters of type WFSStatus
protected  WFSDescribeFeatureTypeRequest WFSProtocolHandler1_0_0.createDescribeFeatureTypeRequest(WFSStatus status)
           
protected  WFSGetFeatureRequest WFSProtocolHandler1_0_0.createGetFeatureRequest(WFSStatus status)
           
protected  WFSTLockFeatureRequest WFSProtocolHandler1_0_0.createLockFeatureRequest(WFSStatus status)
           
protected  WFSTransactionRequest WFSProtocolHandler1_0_0.createTransactionRequest(WFSStatus status)
           
protected  boolean WFSProtocolHandler1_0_0.parseLockFeature(java.io.File f, java.lang.String nameSpace, WFSStatus status)
           
protected  boolean WFSProtocolHandler1_0_0.parseTransaction(java.io.File f, WFSStatus status)
           
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.wfs_1_0_0.request
 

Constructors in org.gvsig.remoteclient.wfs.wfs_1_0_0.request with parameters of type WFSStatus
WFSDescribeFeatureTypeRequest1_0_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSGetFeatureRequest1_0_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSTLockFeatureRequest1_0_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSTransactionRequest1_0_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.wfs_1_1_0
 

Methods in org.gvsig.remoteclient.wfs.wfs_1_1_0 with parameters of type WFSStatus
protected  WFSDescribeFeatureTypeRequest WFSProtocolHandler1_1_0.createDescribeFeatureTypeRequest(WFSStatus status)
           
protected  WFSGetFeatureRequest WFSProtocolHandler1_1_0.createGetFeatureRequest(WFSStatus status)
           
protected  WFSTLockFeatureRequest WFSProtocolHandler1_1_0.createLockFeatureRequest(WFSStatus status)
           
protected  WFSTransactionRequest WFSProtocolHandler1_1_0.createTransactionRequest(WFSStatus status)
           
protected  boolean WFSProtocolHandler1_1_0.parseLockFeature(java.io.File f, java.lang.String nameSpace, WFSStatus status)
           
protected  boolean WFSProtocolHandler1_1_0.parseTransaction(java.io.File f, WFSStatus status)
           
 

Uses of WFSStatus in org.gvsig.remoteclient.wfs.wfs_1_1_0.request
 

Constructors in org.gvsig.remoteclient.wfs.wfs_1_1_0.request with parameters of type WFSStatus
WFSDescribeFeatureTypeRequest1_1_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSGetFeatureRequest1_1_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSTLockFeatureRequest1_1_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
WFSTransactionRequest1_1_0(WFSStatus status, WFSProtocolHandler protocolHandler)
           
 



Copyright © 2004-2013 gvSIG. All Rights Reserved.