Interface VcsChangeDetectionOptionsConfigurator
- All Known Implementing Classes:
BitbucketCloudChangeDetectionOptionsConfigurator
,BitbucketServerChangeDetectionOptionsConfigurator
,DefaultChangeDetectionOptionsConfigurator
,GitChangeDetectionOptionsConfigurator
,SvnChangeDetectionOptionsConfigurator
public interface VcsChangeDetectionOptionsConfigurator
Class handling change detection options for a repository.
- Since:
- 5.14
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiongenerateConfigMap
(@NotNull ActionParametersMap actionParametersMap, @Nullable VcsChangeDetectionOptions previousTriggerDefinition) boolean
Informs if associated repository type supports commits being broken up into individual buildsvoid
populateContextForCreate
(@NotNull Map<String, Object> context) void
populateContextForEdit
(@NotNull Map<String, Object> context, @NotNull VcsChangeDetectionOptions triggerDefinition) void
populateContextForView
(@NotNull Map<String, Object> context, @NotNull VcsChangeDetectionOptions triggerDefinition) void
validate
(@NotNull ActionParametersMap actionParametersMap, @NotNull ErrorCollection errorCollection)
-
Field Details
-
CHANGESET_FILTER_REGEX_CFG_KEY
- See Also:
-
FILTER_PATTERN_OPTION_CFG_KEY
- See Also:
-
FILTER_PATTERN_REGEX_CFG_KEY
- See Also:
-
FILTER_PATTERN_EXCLUDE_OPTION
- See Also:
-
FILTER_PATTERN_INCLUDE_OPTION
- See Also:
-
COMMIT_ISOLATION_OPTION_CFG_KEY
- See Also:
-
-
Method Details
-
populateContextForCreate
-
populateContextForEdit
void populateContextForEdit(@NotNull @NotNull Map<String, Object> context, @NotNull @NotNull VcsChangeDetectionOptions triggerDefinition) -
populateContextForView
void populateContextForView(@NotNull @NotNull Map<String, Object> context, @NotNull @NotNull VcsChangeDetectionOptions triggerDefinition) -
validate
void validate(@NotNull @NotNull ActionParametersMap actionParametersMap, @NotNull @NotNull ErrorCollection errorCollection) -
generateConfigMap
@NotNull @NotNull Map<String,String> generateConfigMap(@NotNull @NotNull ActionParametersMap actionParametersMap, @Nullable @Nullable VcsChangeDetectionOptions previousTriggerDefinition) -
isCommitIsolationSupported
boolean isCommitIsolationSupported()Informs if associated repository type supports commits being broken up into individual builds- Returns:
- true if Bamboo should break the single build changes object into a list of changes
-