Package jetbrains.buildServer.vcs.impl
Interface MergeOptionsFactory
-
- All Known Implementing Classes:
AutoMergeBuildFeature
public interface MergeOptionsFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoMergeOptions
getMergeOptions(Map<String,String> resolvedBuildFeatureParams, SBuild build, boolean runAfterBuildFinish)
Returns merge options for given build feature resolved parameters and a finished build.
-
-
-
Method Detail
-
getMergeOptions
@Nullable AutoMergeOptions getMergeOptions(@NotNull Map<String,String> resolvedBuildFeatureParams, @NotNull SBuild build, boolean runAfterBuildFinish)
Returns merge options for given build feature resolved parameters and a finished build. Returns null if sources from build should not be merged- Parameters:
resolvedParams
- resolved parameters of this build featurebuild
- a finished build of interestonlyAfterBuildFinish
- if true implementations should return merge options which work after build finish otherwise which work when build is running- Returns:
- see above
-
-