Package net.opengis.wfs
Interface TransactionResponseType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Implementing Classes:
- TransactionResponseTypeImpl
 
 public interface TransactionResponseType extends EObjectA representation of the model object 'Transaction Response Type'. The response for a transaction request that was successfully completed. If the transaction failed for any reason, an exception report is returned instead.The following features are supported: - See Also:
- WfsPackage.getTransactionResponseType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description InsertResultsTypegetInsertResults()Returns the value of the 'Insert Results' containment reference.TransactionResultsTypegetTransactionResults()Returns the value of the 'Transaction Results' containment reference.TransactionSummaryTypegetTransactionSummary()Returns the value of the 'Transaction Summary' containment reference.StringgetVersion()Returns the value of the 'Version' attribute.booleanisSetVersion()Returns whether the value of the 'Version' attribute is set.voidsetInsertResults(InsertResultsType value)Sets the value of the 'Insert Results' containment reference.voidsetTransactionResults(TransactionResultsType value)Sets the value of the 'Transaction Results' containment reference.voidsetTransactionSummary(TransactionSummaryType value)Sets the value of the 'Transaction Summary' containment reference.voidsetVersion(String value)Sets the value of the 'Version' attribute.voidunsetVersion()Unsets the value of the 'Version' attribute.
 
- 
- 
- 
Method Detail- 
getTransactionSummaryTransactionSummaryType getTransactionSummary() Returns the value of the 'Transaction Summary' containment reference. The TransactionSummary element is used to summarize the number of feature instances affected by the transaction.- Returns:
- the value of the 'Transaction Summary' containment reference.
- See Also:
- setTransactionSummary(TransactionSummaryType),- WfsPackage.getTransactionResponseType_TransactionSummary()
 
 - 
setTransactionSummaryvoid setTransactionSummary(TransactionSummaryType value) Sets the value of the 'Transaction Summary' containment reference.- Parameters:
- value- the new value of the 'Transaction Summary' containment reference.
- See Also:
- getTransactionSummary()
 
 - 
getTransactionResultsTransactionResultsType getTransactionResults() Returns the value of the 'Transaction Results' containment reference. For systems that do not support atomic transactions, the TransactionResults element may be used to report exception codes and messages for all actions of a transaction that failed to execute successfully.- Returns:
- the value of the 'Transaction Results' containment reference.
- See Also:
- setTransactionResults(TransactionResultsType),- WfsPackage.getTransactionResponseType_TransactionResults()
 
 - 
setTransactionResultsvoid setTransactionResults(TransactionResultsType value) Sets the value of the 'Transaction Results' containment reference.- Parameters:
- value- the new value of the 'Transaction Results' containment reference.
- See Also:
- getTransactionResults()
 
 - 
getInsertResultsInsertResultsType getInsertResults() Returns the value of the 'Insert Results' containment reference. A transaction is a collection of Insert,Update and Delete actions. The Update and Delete actions modify features that already exist. The Insert action, however, creates new features. The InsertResults element is used to report the identifiers of the newly created features.- Returns:
- the value of the 'Insert Results' containment reference.
- See Also:
- setInsertResults(InsertResultsType),- WfsPackage.getTransactionResponseType_InsertResults()
 
 - 
setInsertResultsvoid setInsertResults(InsertResultsType value) Sets the value of the 'Insert Results' containment reference.- Parameters:
- value- the new value of the 'Insert Results' containment reference.
- See Also:
- getInsertResults()
 
 - 
getVersionString getVersion() Returns the value of the 'Version' attribute. The default value is"1.1.0". The version attribute contains the version of the request that generated this response. So a V1.1.0 transaction request generates a V1.1.0 transaction response.- Returns:
- the value of the 'Version' attribute.
- See Also:
- isSetVersion(),- unsetVersion(),- setVersion(String),- WfsPackage.getTransactionResponseType_Version()
 
 - 
setVersionvoid setVersion(String value) Sets the value of the 'Version' attribute.- Parameters:
- value- the new value of the 'Version' attribute.
- See Also:
- isSetVersion(),- unsetVersion(),- getVersion()
 
 - 
unsetVersionvoid unsetVersion() Unsets the value of the 'Version' attribute.- See Also:
- isSetVersion(),- getVersion(),- setVersion(String)
 
 - 
isSetVersionboolean isSetVersion() Returns whether the value of the 'Version' attribute is set.- Returns:
- whether the value of the 'Version' attribute is set.
- See Also:
- unsetVersion(),- getVersion(),- setVersion(String)
 
 
- 
 
-