Package de.espirit.firstspirit.storage
Interface ModifyOperation
- All Superinterfaces:
RevisionOperation<BasicElementInfo>
,Serializable
This interface indicates a
modification operation
- Since:
- 4.0.122
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface de.espirit.firstspirit.storage.RevisionOperation
RevisionOperation.OperationType
-
Method Summary
Modifier and TypeMethodDescriptionReturns a collection of all elements belonging to this revision operationReturns the root element of the save operation.
Example:Methods inherited from interface de.espirit.firstspirit.storage.RevisionOperation
getType
-
Method Details
-
getModificationRootElement
BasicElementInfo getModificationRootElement()Returns the root element of the save operation.
Example:Root `-- A (save was called for this element) `-- B `-- C
In this example casegetModificationRootElement()
delivers node 'A'.getElements()
delivers 'A', 'B', 'C'- Since:
- 4.0.122
-
getElements
Collection<BasicElementInfo> getElements()Returns a collection of all elements belonging to this revision operation- Specified by:
getElements
in interfaceRevisionOperation<BasicElementInfo>
- Returns:
- collection of all elements belonging to this revision operation
- Since:
- 4.0.122
-