Package net.opengis.wfs
Interface GetFeatureWithLockType
-
- All Superinterfaces:
BaseRequestType
,EObject
,GetFeatureType
,Notifier
- All Known Implementing Classes:
GetFeatureWithLockTypeImpl
public interface GetFeatureWithLockType extends GetFeatureType
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 Also:
WfsPackage.getGetFeatureWithLockType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigInteger
getExpiry()
Returns the value of the 'Expiry' attribute.boolean
isSetExpiry()
Returns whether the value of the 'Expiry
' attribute is set.void
setExpiry(BigInteger value)
Sets the value of the 'Expiry
' attribute.void
unsetExpiry()
Unsets the value of the 'Expiry
' attribute.-
Methods inherited from interface BaseRequestType
getBaseUrl, getExtendedProperties, getHandle, getProvidedVersion, getService, getVersion, isSetService, isSetVersion, setBaseUrl, setExtendedProperties, setHandle, setProvidedVersion, setService, setVersion, unsetService, unsetVersion
-
Methods inherited from interface EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface GetFeatureType
getFormatOptions, getMaxFeatures, getMetadata, getOutputFormat, getQuery, getResultType, getStartIndex, getTraverseXlinkDepth, getTraverseXlinkExpiry, getViewParams, isSetOutputFormat, isSetResultType, setFormatOptions, setMaxFeatures, setMetadata, setOutputFormat, setResultType, setStartIndex, setTraverseXlinkDepth, setTraverseXlinkExpiry, unsetOutputFormat, unsetResultType
-
-
-
-
Method Detail
-
getExpiry
BigInteger 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 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.- Returns:
- the value of the 'Expiry' attribute.
- See Also:
isSetExpiry()
,unsetExpiry()
,setExpiry(BigInteger)
,WfsPackage.getGetFeatureWithLockType_Expiry()
-
setExpiry
void setExpiry(BigInteger value)
Sets the value of the 'Expiry
' attribute.- Parameters:
value
- the new value of the 'Expiry' attribute.- See Also:
isSetExpiry()
,unsetExpiry()
,getExpiry()
-
unsetExpiry
void unsetExpiry()
Unsets the value of the 'Expiry
' attribute.- See Also:
isSetExpiry()
,getExpiry()
,setExpiry(BigInteger)
-
isSetExpiry
boolean 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)
-
-