/** * * * * $Id$ */ package net.opengis.wfs20; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Transaction Response Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getTransactionResponseType() * @model extendedMetaData="name='TransactionResponseType' kind='elementOnly'" * @generated */ public interface TransactionResponseType extends EObject { /** * Returns the value of the 'Transaction Summary' containment reference. * *

* If the meaning of the 'Transaction Summary' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Transaction Summary' containment reference. * @see #setTransactionSummary(TransactionSummaryType) * @see net.opengis.wfs20.Wfs20Package#getTransactionResponseType_TransactionSummary() * @model containment="true" required="true" * extendedMetaData="kind='element' name='TransactionSummary' namespace='##targetNamespace'" * @generated */ TransactionSummaryType getTransactionSummary(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionResponseType#getTransactionSummary Transaction Summary}' containment reference. * * * @param value the new value of the 'Transaction Summary' containment reference. * @see #getTransactionSummary() * @generated */ void setTransactionSummary(TransactionSummaryType value); /** * Returns the value of the 'Insert Results' containment reference. * *

* If the meaning of the 'Insert Results' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Insert Results' containment reference. * @see #setInsertResults(ActionResultsType) * @see net.opengis.wfs20.Wfs20Package#getTransactionResponseType_InsertResults() * @model containment="true" * extendedMetaData="kind='element' name='InsertResults' namespace='##targetNamespace'" * @generated */ ActionResultsType getInsertResults(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionResponseType#getInsertResults Insert Results}' containment reference. * * * @param value the new value of the 'Insert Results' containment reference. * @see #getInsertResults() * @generated */ void setInsertResults(ActionResultsType value); /** * Returns the value of the 'Update Results' containment reference. * *

* If the meaning of the 'Update Results' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Update Results' containment reference. * @see #setUpdateResults(ActionResultsType) * @see net.opengis.wfs20.Wfs20Package#getTransactionResponseType_UpdateResults() * @model containment="true" * extendedMetaData="kind='element' name='UpdateResults' namespace='##targetNamespace'" * @generated */ ActionResultsType getUpdateResults(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionResponseType#getUpdateResults Update Results}' containment reference. * * * @param value the new value of the 'Update Results' containment reference. * @see #getUpdateResults() * @generated */ void setUpdateResults(ActionResultsType value); /** * Returns the value of the 'Replace Results' containment reference. * *

* If the meaning of the 'Replace Results' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Replace Results' containment reference. * @see #setReplaceResults(ActionResultsType) * @see net.opengis.wfs20.Wfs20Package#getTransactionResponseType_ReplaceResults() * @model containment="true" * extendedMetaData="kind='element' name='ReplaceResults' namespace='##targetNamespace'" * @generated */ ActionResultsType getReplaceResults(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionResponseType#getReplaceResults Replace Results}' containment reference. * * * @param value the new value of the 'Replace Results' containment reference. * @see #getReplaceResults() * @generated */ void setReplaceResults(ActionResultsType value); /** * Returns the value of the 'Version' attribute. * The default value is "2.0.0". * *

* If the meaning of the 'Version' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Version' attribute. * @see #isSetVersion() * @see #unsetVersion() * @see #setVersion(String) * @see net.opengis.wfs20.Wfs20Package#getTransactionResponseType_Version() * @model default="2.0.0" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='version'" * @generated */ String getVersion(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionResponseType#getVersion Version}' attribute. * * * @param value the new value of the 'Version' attribute. * @see #isSetVersion() * @see #unsetVersion() * @see #getVersion() * @generated */ void setVersion(String value); /** * Unsets the value of the '{@link net.opengis.wfs20.TransactionResponseType#getVersion Version}' attribute. * * * @see #isSetVersion() * @see #getVersion() * @see #setVersion(String) * @generated */ void unsetVersion(); /** * Returns whether the value of the '{@link net.opengis.wfs20.TransactionResponseType#getVersion Version}' attribute is set. * * * @return whether the value of the 'Version' attribute is set. * @see #unsetVersion() * @see #getVersion() * @see #setVersion(String) * @generated */ boolean isSetVersion(); } // TransactionResponseType