Interface ModificationFilesLoader
-
- All Known Implementing Classes:
ModificationFilesLoaderImpl
,SecuredVcsModificationHistory
public interface ModificationFilesLoader
- Author:
- Sergey.Anchipolevsky Date: 07.09.2007
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<SVcsModification,List<FilteredVcsChange>>
getFilteredChangedFiles(List<SVcsModification> modifications, BuildPromotion promotion)
Returns filtered files using the checkout rules of the promotion.List<FilteredVcsChange>
getFilteredChangedFiles(SVcsModification modification, BuildPromotion buildPromotion)
List<FilteredVcsChange>
getFilteredChangedFiles(SVcsModification modification, SBuildType buildType)
List<FilteredVcsChange>
getFilteredChangedFiles(SVcsModification modification, CheckoutRules rules)
List<VcsChange>
getRawChangedFiles(SVcsModification modification)
Loads raw file changes for the given modification id, without applying mapping or filtering
-
-
-
Method Detail
-
getRawChangedFiles
@NotNull List<VcsChange> getRawChangedFiles(@NotNull SVcsModification modification)
Loads raw file changes for the given modification id, without applying mapping or filtering- Parameters:
modification
- VCS modification- Returns:
- the list of loaded changes
-
getFilteredChangedFiles
@NotNull List<FilteredVcsChange> getFilteredChangedFiles(@NotNull SVcsModification modification, @NotNull SBuildType buildType)
-
getFilteredChangedFiles
@NotNull List<FilteredVcsChange> getFilteredChangedFiles(@NotNull SVcsModification modification, @NotNull BuildPromotion buildPromotion)
-
getFilteredChangedFiles
@NotNull List<FilteredVcsChange> getFilteredChangedFiles(@NotNull SVcsModification modification, @NotNull CheckoutRules rules)
-
getFilteredChangedFiles
@NotNull Map<SVcsModification,List<FilteredVcsChange>> getFilteredChangedFiles(@NotNull List<SVcsModification> modifications, @NotNull BuildPromotion promotion)
Returns filtered files using the checkout rules of the promotion.- Parameters:
modifications
- modifications whose files to filterpromotion
- promotion whose checkout rules to use- Returns:
- map from modification to the list of changed files
-
-