Class TLcdWFSTransactionResponse

java.lang.Object
com.luciad.ogc.wfs.client.TLcdWFSTransactionResponse

public final class TLcdWFSTransactionResponse extends Object
This class represents the response of a Transaction request.
Since:
10.0
See Also:
  • Method Details

    • getInsertResults

      public List<TLcdWFSCreatedOrModifiedFeature> getInsertResults()
      Returns the results of the insert actions.
      Returns:
      A list containing a TLcdWFSCreatedOrModifiedFeature for each successful insert action.
    • getUpdateResults

      public List<TLcdWFSCreatedOrModifiedFeature> getUpdateResults()
      Returns the results of the update actions.
      Returns:
      A list containing a TLcdWFSCreatedOrModifiedFeature for each successful update action.
    • getFailedActions

      public List<TLcdOWSException> 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.