Class UncategorizedSCMSourceCategory
- Since:
- 2.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final UncategorizedSCMSourceCategory
TheUncategorizedSCMSourceCategory
singleton with the default naming. -
Constructor Summary
ConstructorDescriptionUncategorizedSCMSourceCategory
(org.jvnet.localizer.Localizable displayName) Constructs aUncategorizedSCMSourceCategory
with customized naming. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Checks if the supplied instance is a match for thisSCMCategory
.Methods inherited from class jenkins.scm.api.SCMSourceCategory
addUncategorizedIfMissing, collect, collectAndSimplify, defaultDisplayName, simplify, union
Methods inherited from class jenkins.scm.api.SCMCategory
getDisplayName, getName, group, group, isMatch, isUncategorized, toDisplayName, toDisplayName, toShortUrl, toShortUrl
-
Field Details
-
DEFAULT
TheUncategorizedSCMSourceCategory
singleton with the default naming.
-
-
Constructor Details
-
UncategorizedSCMSourceCategory
public UncategorizedSCMSourceCategory(@NonNull org.jvnet.localizer.Localizable displayName) Constructs aUncategorizedSCMSourceCategory
with customized naming. Use this constructor when the generic naming is not appropriate terminology for the specificSCMNavigator
's naming of repositories.For example: the Accurev source control system uses the term "depots" to refer to the same thing that Git would call "repositories", it would confuse Accurev users if we called their "depots" as "repositories" (especially as Accurev uses the term "repository" to refer to the Accurev server) so an Accurev specific provider would use this constructor to generate a singleton with the "depots" name. If there is a Git and Accurev navigator in the same context then
SCMSourceCategory.collectAndSimplify(Iterable)
will contain anUncategorizedSCMSourceCategory
under thedefault
key that has aSCMCategory.getDisplayName()
ofDepots / Repositories
(which may indeed confuse the Accurev users who have not been exposed to Git, but as both are in use they should have been prepared for the different terminology)- Parameters:
displayName
- the display name for the uncategorizedSCMSource
s when the source control system uses a different terminology from "repositories".
-
-
Method Details
-
isMatch
Checks if the supplied instance is a match for thisSCMCategory
.- Specified by:
isMatch
in classSCMCategory<SCMSource>
- Parameters:
instance
- the instance to test.- Returns:
true
if the instance belongs to thisSCMCategory
.
-