Class PlanVcsRevisionHistoryServiceImpl
java.lang.Object
com.atlassian.bamboo.plan.vcsRevision.PlanVcsRevisionHistoryServiceImpl
- All Implemented Interfaces:
PlanVcsRevisionHistoryService
public class PlanVcsRevisionHistoryServiceImpl
extends Object
implements PlanVcsRevisionHistoryService
-
Constructor Summary
ConstructorsConstructorDescriptionPlanVcsRevisionHistoryServiceImpl(@NotNull PlanVcsRevisionHistoryManager planVcsRevisionHistoryManager) -
Method Summary
Modifier and TypeMethodDescriptionvoidcleanupUnusedEntriesForPlan(@NotNull PlanKey planKey) Removes history entries that are not used in change detection process.voidclearRevisionHistoryForPlan(@NotNull PlanKey planKey) Removes all history entries for the plan.@NotNull PlanVcsRevisionDataSetgetLastVcsRevisionKeys(@NotNull PlanKey planKey) Return the mapping between repository ids and strings representing the vcs revisions which were result of last performed change detection.voidmarkBuildStarted(@NotNull BuildContext buildContext) Saves the information on started build in the plan's vcs revision history.voidmarkChangeDetectionCompleted(@NotNull PlanKey planKey, int buildNumber, @NotNull PlanVcsRevisionData planVcsRevisionData, long repositoryId) Saves the information on change detection result in the plan's vcs revision history.voidmoveRevisionHistoryForPlan(@NotNull PlanKey originalPlanKey, @NotNull PlanKey planKey) Moves history entries that are related to a moved plan.
-
Constructor Details
-
PlanVcsRevisionHistoryServiceImpl
public PlanVcsRevisionHistoryServiceImpl(@NotNull @NotNull PlanVcsRevisionHistoryManager planVcsRevisionHistoryManager)
-
-
Method Details
-
getLastVcsRevisionKeys
@NotNull public @NotNull PlanVcsRevisionDataSet getLastVcsRevisionKeys(@NotNull @NotNull PlanKey planKey) Description copied from interface:PlanVcsRevisionHistoryServiceReturn the mapping between repository ids and strings representing the vcs revisions which were result of last performed change detection. Will be empty if nothing has been built. The values are parseable by the individual repositories.- Specified by:
getLastVcsRevisionKeysin interfacePlanVcsRevisionHistoryService- Returns:
- mapping between repository id and corresponding revision key.
-
markBuildStarted
Description copied from interface:PlanVcsRevisionHistoryServiceSaves the information on started build in the plan's vcs revision history. Updates previousVcsRevisionKey inBuildContext- Specified by:
markBuildStartedin interfacePlanVcsRevisionHistoryService- Parameters:
buildContext-
-
markChangeDetectionCompleted
public void markChangeDetectionCompleted(@NotNull @NotNull PlanKey planKey, int buildNumber, @NotNull @NotNull PlanVcsRevisionData planVcsRevisionData, long repositoryId) Description copied from interface:PlanVcsRevisionHistoryServiceSaves the information on change detection result in the plan's vcs revision history.- Specified by:
markChangeDetectionCompletedin interfacePlanVcsRevisionHistoryService- Parameters:
planKey-buildNumber-
-
clearRevisionHistoryForPlan
Description copied from interface:PlanVcsRevisionHistoryServiceRemoves all history entries for the plan. In effect the next build will behave similar to initial build.- Specified by:
clearRevisionHistoryForPlanin interfacePlanVcsRevisionHistoryService- Parameters:
planKey-
-
cleanupUnusedEntriesForPlan
Description copied from interface:PlanVcsRevisionHistoryServiceRemoves history entries that are not used in change detection process.- Specified by:
cleanupUnusedEntriesForPlanin interfacePlanVcsRevisionHistoryService- Parameters:
planKey-
-
moveRevisionHistoryForPlan
public void moveRevisionHistoryForPlan(@NotNull @NotNull PlanKey originalPlanKey, @NotNull @NotNull PlanKey planKey) Description copied from interface:PlanVcsRevisionHistoryServiceMoves history entries that are related to a moved plan. Used when plan is moved/renamed.- Specified by:
moveRevisionHistoryForPlanin interfacePlanVcsRevisionHistoryService
-