Package com.luciad.ogc.wfs.client
Class TLcdWFSTransactionResponse
java.lang.Object
com.luciad.ogc.wfs.client.TLcdWFSTransactionResponse
This class represents the response of a Transaction request.
- Since:
- 10.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns an exception for each action in the transaction that has failed.Returns the results of the insert actions.long
Returns the total number of features that were deleted by the transaction request.long
Returns the total number of features that were inserted by the transaction request.long
Returns the total number of features that were updated by the transaction request.Returns the results of the update actions.
-
Method Details
-
getInsertResults
Returns the results of the insert actions.- Returns:
- A list containing a
TLcdWFSCreatedOrModifiedFeature
for each successful insert action.
-
getUpdateResults
Returns the results of the update actions.- Returns:
- A list containing a
TLcdWFSCreatedOrModifiedFeature
for each successful update action.
-
getFailedActions
Returns an exception for each action in the transaction that has failed. This is mostly used by servers that do not support atomic transactions. The locator of the exception should be set to the handle of the action if it was specified by the client.- Returns:
- A list of exceptions for each failed transaction action.
-
getTotalInserted
public long getTotalInserted()Returns the total number of features that were inserted by the transaction request.- Returns:
- The number of inserted features as reported by the server.
-
getTotalUpdated
public long getTotalUpdated()Returns the total number of features that were updated by the transaction request.- Returns:
- The number of updated features as reported by the server.
-
getTotalDeleted
public long getTotalDeleted()Returns the total number of features that were deleted by the transaction request.- Returns:
- The number of deleted features as reported by the server.
-