Package sonia.scm.repository.api
Interface HookModificationsProvider
public interface HookModificationsProvider
The HookDiffProvider returns modifications of branches that have been changed during the current hook.
- Since:
- 2.48.0
-
Method Summary
Modifier and TypeMethodDescriptiongetModifications
(String branchName) If the given branch has been updated during the current hook, this method returns anModifications
instance with the modifications of the branch.
-
Method Details
-
getModifications
If the given branch has been updated during the current hook, this method returns anModifications
instance with the modifications of the branch. If the branch has been deleted, this will returnRemoved
modifications for all paths. Accordingly, if the branch has been created, this will returnAdded
modifications for all paths.
-