Interface RepositoryChangesetDao
- All Superinterfaces:
BambooObjectDao<RepositoryChangeset>
- All Known Implementing Classes:
RepositoryChangesetHibernateDao
-
Method Summary
Modifier and TypeMethodDescription@Nullable RepositoryChangeset
findById
(long id) getChangesetsForBuildNumberRange
(@NotNull PlanKey planKey, int firstBuildNumber, int lastBuildNumber) Finds and returns all repository change sets related with build results from specified range.void
removeRepositoryChangesets
(RepositoryDataEntity repositoryDataEntity) void
saveRelevantChangesets
(List<RelevantChangeset> relevantChangesets) Deprecated.since 3.3 only used by export/importlong
scrollChangesetsForExport
(Consumer<RepositoryChangeset> consumer) Deprecated.since 3.3 only used by export/importlong
Deprecated.since 3.3 only used by export/importMethods inherited from interface com.atlassian.bamboo.persistence3.BambooObjectDao
countAll, countWithRestriction, delete, deleteAll, findAll, findById, merge, save, saveAll
-
Method Details
-
findById
-
removeRepositoryChangesets
-
scrollChangesetsForExport
Deprecated.since 3.3 only used by export/import -
scrollRelevantChangesetsForExport
Deprecated.since 3.3 only used by export/import -
saveRelevantChangesets
Deprecated.since 3.3 only used by export/import -
getChangesetsForBuildNumberRange
List<RepositoryChangeset> getChangesetsForBuildNumberRange(@NotNull @NotNull PlanKey planKey, int firstBuildNumber, int lastBuildNumber) Finds and returns all repository change sets related with build results from specified range. Once off results are skipped.- Parameters:
planKey
-firstBuildNumber
-lastBuildNumber
-- Returns:
- Since:
- 5.0
-