/** * * * * $Id$ */ package net.opengis.wfs20; import java.math.BigInteger; import net.opengis.fes20.AbstractQueryExpressionType; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.util.FeatureMap; /** * * A representation of the model object 'Lock Feature Type'. * * *

* The following features are supported: *

*

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

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

* * @return the value of the 'Abstract Query Expression Group' attribute list. * @see net.opengis.wfs20.Wfs20Package#getLockFeatureType_AbstractQueryExpressionGroup() * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" required="true" many="true" * extendedMetaData="kind='group' name='AbstractQueryExpression:group' namespace='http://www.opengis.net/fes/2.0'" * @generated */ FeatureMap getAbstractQueryExpressionGroup(); /** * Returns the value of the 'Abstract Query Expression' containment reference list. * The list contents are of type {@link net.opengis.fes20.AbstractQueryExpressionType}. * *

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

* * @return the value of the 'Abstract Query Expression' containment reference list. * @see net.opengis.wfs20.Wfs20Package#getLockFeatureType_AbstractQueryExpression() * @model containment="true" required="true" transient="true" changeable="false" volatile="true" derived="true" * extendedMetaData="kind='element' name='AbstractQueryExpression' namespace='http://www.opengis.net/fes/2.0' group='http://www.opengis.net/fes/2.0#AbstractQueryExpression:group'" * @generated */ EList getAbstractQueryExpression(); /** * Returns the value of the 'Expiry' attribute. * The default value is "300". * *

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

* * @return the value of the 'Expiry' attribute. * @see #isSetExpiry() * @see #unsetExpiry() * @see #setExpiry(BigInteger) * @see net.opengis.wfs20.Wfs20Package#getLockFeatureType_Expiry() * @model default="300" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.PositiveInteger" * extendedMetaData="kind='attribute' name='expiry'" * @generated */ BigInteger getExpiry(); /** * Sets the value of the '{@link net.opengis.wfs20.LockFeatureType#getExpiry Expiry}' attribute. * * * @param value the new value of the 'Expiry' attribute. * @see #isSetExpiry() * @see #unsetExpiry() * @see #getExpiry() * @generated */ void setExpiry(BigInteger value); /** * Unsets the value of the '{@link net.opengis.wfs20.LockFeatureType#getExpiry Expiry}' attribute. * * * @see #isSetExpiry() * @see #getExpiry() * @see #setExpiry(BigInteger) * @generated */ void unsetExpiry(); /** * Returns whether the value of the '{@link net.opengis.wfs20.LockFeatureType#getExpiry Expiry}' attribute is set. * * * @return whether the value of the 'Expiry' attribute is set. * @see #unsetExpiry() * @see #getExpiry() * @see #setExpiry(BigInteger) * @generated */ boolean isSetExpiry(); /** * Returns the value of the 'Lock Action' attribute. * The default value is "ALL". * The literals are from the enumeration {@link net.opengis.wfs20.AllSomeType}. * *

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

* * @return the value of the 'Lock Action' attribute. * @see net.opengis.wfs20.AllSomeType * @see #isSetLockAction() * @see #unsetLockAction() * @see #setLockAction(AllSomeType) * @see net.opengis.wfs20.Wfs20Package#getLockFeatureType_LockAction() * @model default="ALL" unsettable="true" * extendedMetaData="kind='attribute' name='lockAction'" * @generated */ AllSomeType getLockAction(); /** * Sets the value of the '{@link net.opengis.wfs20.LockFeatureType#getLockAction Lock Action}' attribute. * * * @param value the new value of the 'Lock Action' attribute. * @see net.opengis.wfs20.AllSomeType * @see #isSetLockAction() * @see #unsetLockAction() * @see #getLockAction() * @generated */ void setLockAction(AllSomeType value); /** * Unsets the value of the '{@link net.opengis.wfs20.LockFeatureType#getLockAction Lock Action}' attribute. * * * @see #isSetLockAction() * @see #getLockAction() * @see #setLockAction(AllSomeType) * @generated */ void unsetLockAction(); /** * Returns whether the value of the '{@link net.opengis.wfs20.LockFeatureType#getLockAction Lock Action}' attribute is set. * * * @return whether the value of the 'Lock Action' attribute is set. * @see #unsetLockAction() * @see #getLockAction() * @see #setLockAction(AllSomeType) * @generated */ boolean isSetLockAction(); /** * 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#getLockFeatureType_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.LockFeatureType#getLockId Lock Id}' attribute. * * * @param value the new value of the 'Lock Id' attribute. * @see #getLockId() * @generated */ void setLockId(String value); } // LockFeatureType