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

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getTransactionType() * @model extendedMetaData="name='TransactionType' kind='elementOnly'" * @generated */ public interface TransactionType extends BaseRequestType { /** * Returns the value of the 'Group' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

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

* * @return the value of the 'Group' attribute list. * @see net.opengis.wfs20.Wfs20Package#getTransactionType_Group() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" * extendedMetaData="kind='group' name='group:3'" * @generated */ FeatureMap getGroup(); /** * Returns the value of the 'Abstract Transaction Action Group' attribute list. * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}. * *

* If the meaning of the 'Abstract Transaction Action Group' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Abstract Transaction Action Group' attribute list. * @see net.opengis.wfs20.Wfs20Package#getTransactionType_AbstractTransactionActionGroup() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true" transient="true" volatile="true" derived="true" * extendedMetaData="kind='group' name='AbstractTransactionAction:group' namespace='##targetNamespace' group='#group:3'" * @generated */ FeatureMap getAbstractTransactionActionGroup(); /** * Returns the value of the 'Abstract Transaction Action' containment reference list. * The list contents are of type {@link net.opengis.wfs20.AbstractTransactionActionType}. * *

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

* * @return the value of the 'Abstract Transaction Action' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getTransactionType_AbstractTransactionAction() * @model containment="true" transient="true" changeable="false" volatile="true" derived="true" * extendedMetaData="kind='element' name='AbstractTransactionAction' namespace='##targetNamespace' group='AbstractTransactionAction:group'" * @generated */ EList getAbstractTransactionAction(); /** * Returns the value of the 'Lock Id' attribute. * *

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

* * @return the value of the 'Lock Id' attribute. * @see #setLockId(String) * @see net.opengis.wfs20.Wfs20Package#getTransactionType_LockId() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='lockId'" * @generated */ String getLockId(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionType#getLockId Lock Id}' attribute. * * * @param value the new value of the 'Lock Id' attribute. * @see #getLockId() * @generated */ void setLockId(String value); /** * Returns the value of the 'Release Action' attribute. * The default value is "ALL". * The literals are from the enumeration {@link net.opengis.wfs20.AllSomeType}. * *

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

* * @return the value of the 'Release Action' attribute. * @see net.opengis.wfs20.AllSomeType * @see #isSetReleaseAction() * @see #unsetReleaseAction() * @see #setReleaseAction(AllSomeType) * @see net.opengis.wfs20.Wfs20Package#getTransactionType_ReleaseAction() * @model default="ALL" unsettable="true" * extendedMetaData="kind='attribute' name='releaseAction'" * @generated */ AllSomeType getReleaseAction(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionType#getReleaseAction Release Action}' attribute. * * * @param value the new value of the 'Release Action' attribute. * @see net.opengis.wfs20.AllSomeType * @see #isSetReleaseAction() * @see #unsetReleaseAction() * @see #getReleaseAction() * @generated */ void setReleaseAction(AllSomeType value); /** * Unsets the value of the '{@link net.opengis.wfs20.TransactionType#getReleaseAction Release Action}' attribute. * * * @see #isSetReleaseAction() * @see #getReleaseAction() * @see #setReleaseAction(AllSomeType) * @generated */ void unsetReleaseAction(); /** * Returns whether the value of the '{@link net.opengis.wfs20.TransactionType#getReleaseAction Release Action}' attribute is set. * * * @return whether the value of the 'Release Action' attribute is set. * @see #unsetReleaseAction() * @see #getReleaseAction() * @see #setReleaseAction(AllSomeType) * @generated */ boolean isSetReleaseAction(); /** * Returns the value of the 'Srs Name' attribute. * *

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

* * @return the value of the 'Srs Name' attribute. * @see #setSrsName(String) * @see net.opengis.wfs20.Wfs20Package#getTransactionType_SrsName() * @model dataType="org.eclipse.emf.ecore.xml.type.AnyURI" * extendedMetaData="kind='attribute' name='srsName'" * @generated */ String getSrsName(); /** * Sets the value of the '{@link net.opengis.wfs20.TransactionType#getSrsName Srs Name}' attribute. * * * @param value the new value of the 'Srs Name' attribute. * @see #getSrsName() * @generated */ void setSrsName(String value); } // TransactionType