Package jenkins.branch
Class BranchPropertyStrategyDescriptor
- Direct Known Subclasses:
DefaultBranchPropertyStrategy.DescriptorImpl
,NamedExceptionsBranchPropertyStrategy.DescriptorImpl
The base class for
Descriptor
s or BranchPropertyStrategy
instances.- Author:
- Stephen Connolly
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.model.Descriptor
Descriptor.FormException, Descriptor.PropertyType, Descriptor.Self
-
Field Summary
Fields inherited from class hudson.model.Descriptor
clazz
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic List<BranchPropertyStrategyDescriptor>
all()
Gets all theBranchPropertyStrategyDescriptor
instances.static List<BranchPropertyStrategyDescriptor>
all
(MultiBranchProject project, jenkins.scm.api.SCMSourceDescriptor sourceDescriptor) Gets all theBranchPropertyStrategyDescriptor
instances applicable to the specified project and source.boolean
isApplicable
(MultiBranchProject project) A branch property strategy may not be appropriate for every project, this method lets a strategy opt out of being selectable for a specific project.protected boolean
isApplicable
(MultiBranchProjectDescriptor projectDescriptor) Usually a branch property strategy is more concerned with the specific type of project than the specifics of the project instance.boolean
isApplicable
(jenkins.scm.api.SCMSourceDescriptor sourceDescriptor) A branch property strategy may not be appropriate for every type of source, this method lets a strategy opt out of being selectable for a specific source type.Methods inherited from class hudson.model.Descriptor
addHelpFileRedirect, bindJSON, calcAutoCompleteSettings, calcFillSettings, configure, configure, doHelp, find, find, findByDescribableClassName, findById, getCategory, getCheckMethod, getCheckUrl, getConfigFile, getConfigPage, getCurrentDescriptorByNameUrl, getDescriptorFullUrl, getDescriptorUrl, getDisplayName, getGlobalConfigPage, getGlobalPropertyType, getHelpFile, getHelpFile, getHelpFile, getId, getJsonSafeClassName, getKlass, getPlugin, getPossibleViewNames, getPropertyType, getPropertyType, getPropertyTypeOrDie, getRequiredGlobalConfigPagePermission, getT, getViewPage, isInstance, isSubTypeOf, load, newInstance, newInstance, newInstancesFromHeteroList, newInstancesFromHeteroList, save, self, toArray, toList, toMap
-
Constructor Details
-
BranchPropertyStrategyDescriptor
public BranchPropertyStrategyDescriptor()
-
-
Method Details
-
isApplicable
public boolean isApplicable(@NonNull jenkins.scm.api.SCMSourceDescriptor sourceDescriptor) A branch property strategy may not be appropriate for every type of source, this method lets a strategy opt out of being selectable for a specific source type. When this method is called (via stapler) we do not have an instance of the source so this needs to be hooked- Parameters:
sourceDescriptor
- the source descriptor.- Returns:
- true iff this property strategy is relevant with this source.
-
isApplicable
A branch property strategy may not be appropriate for every project, this method lets a strategy opt out of being selectable for a specific project.By default it checks
isApplicable(MultiBranchProjectDescriptor)
, and whetherBranchPropertyDescriptor.all(MultiBranchProject)
is nonempty when filtered byDescriptorVisibilityFilter
on the project, which due toBranchPropertyDescriptor.Visibility
also callsBranchPropertyDescriptor.isApplicable(MultiBranchProject)
.- Parameters:
project
- the project.- Returns:
- true iff this property strategy is relevant with this project instance.
-
isApplicable
Usually a branch property strategy is more concerned with the specific type of project than the specifics of the project instance.- Parameters:
projectDescriptor
- the project type.- Returns:
- true iff this property strategy is relevant with this project type.
-
all
Gets all theBranchPropertyStrategyDescriptor
instances.- Returns:
- all the
BranchPropertyStrategyDescriptor
instances.
-
all
public static List<BranchPropertyStrategyDescriptor> all(@NonNull MultiBranchProject project, @NonNull jenkins.scm.api.SCMSourceDescriptor sourceDescriptor) Gets all theBranchPropertyStrategyDescriptor
instances applicable to the specified project and source.- Parameters:
project
- the projectsourceDescriptor
- the source.- Returns:
- all the
BranchPropertyStrategyDescriptor
instances applicable to the specified project and source.
-