Package com.atlassian.bamboo.repository
Interface IncludeExcludeAwareRepository
-
- All Superinterfaces:
BambooPluginModule
,BuildConfigurationAwarePlugin
,ConfigurablePlugin
,ConvertibleFromConfig
,DescriptionProvider
,InitablePluginModule
,NameProvider
,RenderableBuildConfiguration
,Repository
,RepositoryV2
,Serializable
- All Known Implementing Classes:
AbstractRepository
,AbstractStandaloneRepository
,BitbucketRepository
,GitHubRepository
,GitRepository
,NullRepository
,PerforceRepository
,StashRepositoryImpl
,SvnRepository
public interface IncludeExcludeAwareRepository extends Repository
-
-
Field Summary
Fields Modifier and Type Field Description static String
FILTER_PATTERN_EXCLUDE
static String
FILTER_PATTERN_INCLUDE
static String
FILTER_PATTERN_NONE
static String
FILTER_PATTERN_OPTION
static String
FILTER_PATTERN_REGEX
-
Fields inherited from interface com.atlassian.bamboo.repository.Repository
SELECTED_REPOSITORY, UNKNOWN_HOST
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable String
getFilterFilePatternOption()
Do we want to include files which match pattern or exclude files which match pattern?@Nullable String
getFilterFilePatternRegex()
The regex expression on which fileName (paths) are matched for inclusion/exclusion.-
Methods inherited from interface com.atlassian.bamboo.v2.build.BuildConfigurationAwarePlugin
addDefaultValues, isConfigurationMissing, prepareConfigObject, validate
-
Methods inherited from interface com.atlassian.bamboo.v2.build.ConfigurablePlugin
customizeBuildRequirements, removeBuildRequirements
-
Methods inherited from interface com.atlassian.bamboo.fieldvalue.ConvertibleFromConfig
populateFromConfig, toConfiguration
-
Methods inherited from interface com.atlassian.bamboo.utils.DescriptionProvider
getDescription
-
Methods inherited from interface com.atlassian.bamboo.plugin.InitablePluginModule
init
-
Methods inherited from interface com.atlassian.bamboo.v2.build.RenderableBuildConfiguration
getEditHtml, getViewHtml
-
Methods inherited from interface com.atlassian.bamboo.repository.Repository
checkConnection, getHost, getKey, getLocationIdentifier, getMinimalEditHtml, getName, getShortKey
-
Methods inherited from interface com.atlassian.bamboo.v2.build.repository.RepositoryV2
collectChangesSinceLastBuild, getSourceCodeDirectory, isRepositoryDifferent
-
-
-
-
Field Detail
-
FILTER_PATTERN_OPTION
static final String FILTER_PATTERN_OPTION
- See Also:
- Constant Field Values
-
FILTER_PATTERN_REGEX
static final String FILTER_PATTERN_REGEX
- See Also:
- Constant Field Values
-
FILTER_PATTERN_EXCLUDE
static final String FILTER_PATTERN_EXCLUDE
- See Also:
- Constant Field Values
-
FILTER_PATTERN_INCLUDE
static final String FILTER_PATTERN_INCLUDE
- See Also:
- Constant Field Values
-
FILTER_PATTERN_NONE
static final String FILTER_PATTERN_NONE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getFilterFilePatternOption
@Nullable @Nullable String getFilterFilePatternOption()
Do we want to include files which match pattern or exclude files which match pattern?- Returns:
-
getFilterFilePatternRegex
@Nullable @Nullable String getFilterFilePatternRegex()
The regex expression on which fileName (paths) are matched for inclusion/exclusion.- Returns:
-
-