Package net.opengis.wfs
Interface LockFeatureType
- 
- All Superinterfaces:
- BaseRequestType,- EObject,- Notifier
 - All Known Implementing Classes:
- LockFeatureTypeImpl
 
 public interface LockFeatureType extends BaseRequestType A representation of the model object 'Lock Feature Type'. This type defines the LockFeature operation. The LockFeature element contains one or more Lock elements that define which features of a particular type should be locked. A lock identifier (lockId) is returned to the client application which can be used by subsequent operations to reference the locked features.The following features are supported: - See Also:
- WfsPackage.getLockFeatureType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description BigIntegergetExpiry()Returns the value of the 'Expiry' attribute.EListgetLock()Returns the value of the 'Lock' containment reference list.AllSomeTypegetLockAction()Returns the value of the 'Lock Action' attribute.booleanisSetExpiry()Returns whether the value of the 'Expiry' attribute is set.booleanisSetLockAction()Returns whether the value of the 'Lock Action' attribute is set.voidsetExpiry(BigInteger value)Sets the value of the 'Expiry' attribute.voidsetLockAction(AllSomeType value)Sets the value of the 'Lock Action' attribute.voidunsetExpiry()Unsets the value of the 'Expiry' attribute.voidunsetLockAction()Unsets the value of the 'Lock Action' attribute.- 
Methods inherited from interface BaseRequestTypegetBaseUrl, getExtendedProperties, getHandle, getProvidedVersion, getService, getVersion, isSetService, isSetVersion, setBaseUrl, setExtendedProperties, setHandle, setProvidedVersion, setService, setVersion, unsetService, unsetVersion
 
- 
 
- 
- 
- 
Method Detail- 
getLockEList getLock() Returns the value of the 'Lock' containment reference list. The list contents are of typeLockType. The lock element is used to indicate which feature instances of particular type are to be locked.- Returns:
- the value of the 'Lock' containment reference list.
- See Also:
- WfsPackage.getLockFeatureType_Lock()
 
 - 
getExpiryBigInteger getExpiry() 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 LockFeature 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.- Returns:
- the value of the 'Expiry' attribute.
- See Also:
- isSetExpiry(),- unsetExpiry(),- setExpiry(BigInteger),- WfsPackage.getLockFeatureType_Expiry()
 
 - 
setExpiryvoid setExpiry(BigInteger value) Sets the value of the 'Expiry' attribute.- Parameters:
- value- the new value of the 'Expiry' attribute.
- See Also:
- isSetExpiry(),- unsetExpiry(),- getExpiry()
 
 - 
unsetExpiryvoid unsetExpiry() Unsets the value of the 'Expiry' attribute.- See Also:
- isSetExpiry(),- getExpiry(),- setExpiry(BigInteger)
 
 - 
isSetExpiryboolean isSetExpiry() Returns whether the value of the 'Expiry' attribute is set.- Returns:
- whether the value of the 'Expiry' attribute is set.
- See Also:
- unsetExpiry(),- getExpiry(),- setExpiry(BigInteger)
 
 - 
getLockActionAllSomeType getLockAction() Returns the value of the 'Lock Action' attribute. The default value is"ALL". The literals are from the enumerationAllSomeType. The lockAction attribute is used to indicate what a Web Feature Service should do when it encounters a feature instance that has already been locked by another client application. Valid values are ALL or SOME. ALL means that the Web Feature Service must acquire locks on all the requested feature instances. If it cannot acquire those locks then the request should fail. In this instance, all locks acquired by the operation should be released. SOME means that the Web Feature Service should lock as many of the requested features as it can.- Returns:
- the value of the 'Lock Action' attribute.
- See Also:
- AllSomeType,- isSetLockAction(),- unsetLockAction(),- setLockAction(AllSomeType),- WfsPackage.getLockFeatureType_LockAction()
 
 - 
setLockActionvoid setLockAction(AllSomeType value) Sets the value of the 'Lock Action' attribute.- Parameters:
- value- the new value of the 'Lock Action' attribute.
- See Also:
- AllSomeType,- isSetLockAction(),- unsetLockAction(),- getLockAction()
 
 - 
unsetLockActionvoid unsetLockAction() Unsets the value of the 'Lock Action' attribute.
 - 
isSetLockActionboolean isSetLockAction() Returns whether the value of the 'Lock Action' attribute is set.- Returns:
- whether the value of the 'Lock Action' attribute is set.
- See Also:
- unsetLockAction(),- getLockAction(),- setLockAction(AllSomeType)
 
 
- 
 
-