Package net.opengis.wfs
Interface TransactionType
-
- All Superinterfaces:
BaseRequestType
,EObject
,Notifier
- All Known Implementing Classes:
TransactionTypeImpl
public interface TransactionType extends BaseRequestType
A representation of the model object 'Transaction Type'. The TransactionType defines the Transaction operation. A Transaction element contains one or more Insert, Update Delete and Native elements that allow a client application to create, modify or remove feature instances from the feature repository that a Web Feature Service controls.The following features are supported:
- See Also:
WfsPackage.getTransactionType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EList
getDelete()
Returns the value of the 'Delete' containment reference list.FeatureMap
getGroup()
Returns the value of the 'Group' attribute list.EList
getInsert()
Returns the value of the 'Insert' containment reference list.String
getLockId()
Returns the value of the 'Lock Id' attribute.EList
getNative()
Returns the value of the 'Native' containment reference list.AllSomeType
getReleaseAction()
Returns the value of the 'Release Action' attribute.EList
getUpdate()
Returns the value of the 'Update' containment reference list.boolean
isSetReleaseAction()
Returns whether the value of the 'Release Action
' attribute is set.void
setLockId(String value)
Sets the value of the 'Lock Id
' attribute.void
setReleaseAction(AllSomeType value)
Sets the value of the 'Release Action
' attribute.void
unsetReleaseAction()
Unsets the value of the 'Release Action
' attribute.-
Methods inherited from interface BaseRequestType
getBaseUrl, getExtendedProperties, getHandle, getProvidedVersion, getService, getVersion, isSetService, isSetVersion, setBaseUrl, setExtendedProperties, setHandle, setProvidedVersion, setService, setVersion, unsetService, unsetVersion
-
-
-
-
Method Detail
-
getLockId
String getLockId()
Returns the value of the 'Lock Id' attribute. In order for a client application to operate upon locked feature instances, the Transaction request must include the LockId element. The content of this element must be the lock identifier the client application obtained from a previous GetFeatureWithLock or LockFeature operation. If the correct lock identifier is specified the Web Feature Service knows that the client application may operate upon the locked feature instances. No LockId element needs to be specified to operate upon unlocked features.- Returns:
- the value of the 'Lock Id' attribute.
- See Also:
setLockId(String)
,WfsPackage.getTransactionType_LockId()
-
setLockId
void setLockId(String value)
Sets the value of the 'Lock Id
' attribute.- Parameters:
value
- the new value of the 'Lock Id' attribute.- See Also:
getLockId()
-
getGroup
FeatureMap getGroup()
Returns the value of the 'Group' attribute list. The list contents are of typeFeatureMap.Entry
.If the meaning of the 'Group' attribute list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Group' attribute list.
- See Also:
WfsPackage.getTransactionType_Group()
-
getInsert
EList getInsert()
Returns the value of the 'Insert' containment reference list. The list contents are of typeInsertElementType
.If the meaning of the 'Insert' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Insert' containment reference list.
- See Also:
WfsPackage.getTransactionType_Insert()
-
getUpdate
EList getUpdate()
Returns the value of the 'Update' containment reference list. The list contents are of typeUpdateElementType
.If the meaning of the 'Update' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Update' containment reference list.
- See Also:
WfsPackage.getTransactionType_Update()
-
getDelete
EList getDelete()
Returns the value of the 'Delete' containment reference list. The list contents are of typeDeleteElementType
.If the meaning of the 'Delete' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Delete' containment reference list.
- See Also:
WfsPackage.getTransactionType_Delete()
-
getNative
EList getNative()
Returns the value of the 'Native' containment reference list. The list contents are of typeNativeType
.If the meaning of the 'Native' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Native' containment reference list.
- See Also:
WfsPackage.getTransactionType_Native()
-
getReleaseAction
AllSomeType getReleaseAction()
Returns the value of the 'Release Action' attribute. The default value is"ALL"
. The literals are from the enumerationAllSomeType
. The releaseAction attribute is used to control how a Web Feature service releases locks on feature instances after a Transaction request has been processed. Valid values are ALL or SOME. A value of ALL means that the Web Feature Service should release the locks of all feature instances locked with the specified lockId regardless or whether or not the features were actually modified. A value of SOME means that the Web Feature Service will only release the locks held on feature instances that were actually operated upon by the transaction. The lockId that the client application obtained shall remain valid and the other, unmodified, feature instances shall remain locked. If the expiry attribute was specified in the original operation that locked the feature instances, then the expiry counter will be reset to give the client application that same amount of time to post subsequent transactions against the locked features.- Returns:
- the value of the 'Release Action' attribute.
- See Also:
AllSomeType
,isSetReleaseAction()
,unsetReleaseAction()
,setReleaseAction(AllSomeType)
,WfsPackage.getTransactionType_ReleaseAction()
-
setReleaseAction
void setReleaseAction(AllSomeType value)
Sets the value of the 'Release Action
' attribute.- Parameters:
value
- the new value of the 'Release Action' attribute.- See Also:
AllSomeType
,isSetReleaseAction()
,unsetReleaseAction()
,getReleaseAction()
-
unsetReleaseAction
void unsetReleaseAction()
Unsets the value of the 'Release Action
' attribute.
-
isSetReleaseAction
boolean isSetReleaseAction()
Returns whether the value of the 'Release Action
' attribute is set.- Returns:
- whether the value of the 'Release Action' attribute is set.
- See Also:
unsetReleaseAction()
,getReleaseAction()
,setReleaseAction(AllSomeType)
-
-