/** * * * * $Id$ */ package net.opengis.wfs20; import java.math.BigInteger; /** * * A representation of the model object 'Get Feature With Lock Type'. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs20.Wfs20Package#getGetFeatureWithLockType() * @model extendedMetaData="name='GetFeatureWithLockType' kind='elementOnly'" * @generated */ public interface GetFeatureWithLockType extends GetFeatureType { /** * 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#getGetFeatureWithLockType_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.GetFeatureWithLockType#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.GetFeatureWithLockType#getExpiry Expiry}' attribute. * * * @see #isSetExpiry() * @see #getExpiry() * @see #setExpiry(BigInteger) * @generated */ void unsetExpiry(); /** * Returns whether the value of the '{@link net.opengis.wfs20.GetFeatureWithLockType#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#getGetFeatureWithLockType_LockAction() * @model default="ALL" unsettable="true" * extendedMetaData="kind='attribute' name='lockAction'" * @generated */ AllSomeType getLockAction(); /** * Sets the value of the '{@link net.opengis.wfs20.GetFeatureWithLockType#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.GetFeatureWithLockType#getLockAction Lock Action}' attribute. * * * @see #isSetLockAction() * @see #getLockAction() * @see #setLockAction(AllSomeType) * @generated */ void unsetLockAction(); /** * Returns whether the value of the '{@link net.opengis.wfs20.GetFeatureWithLockType#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(); } // GetFeatureWithLockType