/** * * * * $Id$ */ package net.opengis.wfs; import java.math.BigInteger; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Get Feature With Lock Type'. * * * * * A GetFeatureWithLock request operates identically to a * GetFeature request expect that it attempts to lock the * feature instances in the result set and includes a lock * identifier in its response to a client. A lock identifier * is an identifier generated by a Web Feature Service that * a client application can use, in subsequent operations, * to reference the locked set of feature instances. * * *

* The following features are supported: *

*

* * @see net.opengis.wfs.WfsPackage#getGetFeatureWithLockType() * @model extendedMetaData="name='GetFeatureWithLockType' kind='elementOnly'" * @generated */ public interface GetFeatureWithLockType extends GetFeatureType { /** * Returns the value of the 'Expiry' attribute. * The default value is "5". * * * * * The expiry attribute is used to set the length * of time (expressed in minutes) that features will * remain locked as a result of a GetFeatureWithLock * request. After the expiry period elapses, the * locked resources must be released. If the * expiry attribute is not set, then the default * value of 5 minutes will be enforced. * * @return the value of the 'Expiry' attribute. * @see #isSetExpiry() * @see #unsetExpiry() * @see #setExpiry(BigInteger) * @see net.opengis.wfs.WfsPackage#getGetFeatureWithLockType_Expiry() * @model default="5" unique="false" 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.wfs.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.wfs.GetFeatureWithLockType#getExpiry Expiry}' attribute. * * * @see #isSetExpiry() * @see #getExpiry() * @see #setExpiry(BigInteger) * @generated */ void unsetExpiry(); /** * Returns whether the value of the '{@link net.opengis.wfs.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(); } // GetFeatureWithLockType