Package de.espirit.firstspirit.storage
Interface ContentOperation
- All Superinterfaces:
RevisionOperation<EntityInfo>
,Serializable
This operation indicates a
It provides information about
content commit
.It provides information about
created
, changed
,
deleted
and released
entities.- Since:
- 4.0.122
-
Nested Class Summary
Nested classes/interfaces inherited from interface de.espirit.firstspirit.storage.RevisionOperation
RevisionOperation.OperationType
-
Method Summary
Modifier and TypeMethodDescriptionReturns an unmodifiable collection ofentity infos
indicating entities which were changed during the belonging content commit of this content operationReturns an unmodifiable collection ofentity infos
indicating entities which were created during the belonging content commit of this content operationReturns an unmodifiable collection ofentity infos
indicating entities which were deleted during the belonging content commit of this content operationReturns an unmodifiable collection ofentity infos
indicating entities which were released during the belonging content commit of this content operationMethods inherited from interface de.espirit.firstspirit.storage.RevisionOperation
getElements, getType
-
Method Details
-
getCreatedEntities
Collection<EntityInfo> getCreatedEntities()Returns an unmodifiable collection ofentity infos
indicating entities which were created during the belonging content commit of this content operation- Since:
- 4.0.122
-
getChangedEntities
Collection<EntityInfo> getChangedEntities()Returns an unmodifiable collection ofentity infos
indicating entities which were changed during the belonging content commit of this content operation- Since:
- 4.0.122
-
getDeletedEntities
Collection<EntityInfo> getDeletedEntities()Returns an unmodifiable collection ofentity infos
indicating entities which were deleted during the belonging content commit of this content operation- Since:
- 4.0.122
-
getReleasedEntities
Collection<EntityInfo> getReleasedEntities()Returns an unmodifiable collection ofentity infos
indicating entities which were released during the belonging content commit of this content operation- Since:
- 4.0.122
-