public class VersioningDao<Q extends JiraRelationalPathBase<?>,D extends DTO> extends Object
Modifier and Type | Method and Description |
---|---|
long |
cleanDeletedRelatedVersions(long parentIssueId) |
long |
cleanDeletedVersion(long entityId) |
long |
cleanDeletedVersionsOlderThan(java.time.Duration ageThreshold)
Removes all entity version records marked as deleted and older than
duration . |
List<D> |
fetchAllRows(int limit) |
D |
fetchOneRow(long entityId) |
List<D> |
findVersionsUpdatedInTheLast(java.time.Duration duration)
Searches for entity versions that were updated (including deletes) within the last 'duration' amount of time.
|
Optional<Long> |
getCurrentVersion(long entityId)
Return the version for the entity identified by
entityId or Optional.empty() if there is no version. |
List<D> |
getEntityVersionsRelatedToIssue(long parentIssueId) |
Optional<D> |
getMostRecentlyUpdatedVersion()
Grabs the most recently updated issue version, regardless of whether or not it's marked as deleted.
|
void |
incrementEntityVersionsRelatedToIssue(long parentIssueId)
Bumps the version for all entities related to the specified
parentIssueId in a
single batch update which are not marked as deleted.Note: no new rows will be added for entities that don't already have a version in the db |
long |
insertNewRow(long entityId,
long parentIssueId,
java.time.LocalDateTime updateTime,
long version,
String deleted) |
long |
markDeletedAndUpdateVersion(long entityId)
Marks the specified entity as deleted and bumps its version by 1.
|
long |
markRelatedToIssueAsDeletedAndUpdateVersion(long parentIssueId)
Marks all entities related to the specified
parentIssueId as deleted and bumps the version in a
single batch update. |
public long markDeletedAndUpdateVersion(long entityId)
entityId
- identifier for entity to mark as deleted & whose version number to bumppublic long markRelatedToIssueAsDeletedAndUpdateVersion(long parentIssueId)
parentIssueId
as deleted and bumps the version in a
single batch update.parentIssueId
- identifier for the Issue whose related entities will be marked as deleted and have their versions bumpedpublic Optional<Long> getCurrentVersion(long entityId)
entityId
or Optional.empty()
if there is no version.entityId
- identifies the entity whose current version will be retrievedpublic long cleanDeletedVersionsOlderThan(java.time.Duration ageThreshold)
duration
.ageThreshold
- threshold for deletion; entities marked as deleted and older than this will be removed.public long cleanDeletedVersion(long entityId)
public long cleanDeletedRelatedVersions(long parentIssueId)
public D fetchOneRow(long entityId)
public long insertNewRow(long entityId, long parentIssueId, java.time.LocalDateTime updateTime, long version, String deleted)
public void incrementEntityVersionsRelatedToIssue(long parentIssueId)
parentIssueId
in a
single batch update which are not marked as deleted.parentIssueId
- identifier for the Issue whose related entities will have their versions bumpedpublic List<D> findVersionsUpdatedInTheLast(java.time.Duration duration)
duration
- how far back from the present to search for updated entitiesCopyright © 2002-2022 Atlassian. All Rights Reserved.
View cookie preferences