Package jenkins.model
Class JobGlobalBuildDiscarderStrategy
- java.lang.Object
-
- hudson.model.AbstractDescribableImpl<GlobalBuildDiscarderStrategy>
-
- jenkins.model.GlobalBuildDiscarderStrategy
-
- jenkins.model.JobGlobalBuildDiscarderStrategy
-
- All Implemented Interfaces:
ExtensionPoint
,Describable<GlobalBuildDiscarderStrategy>
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) public class JobGlobalBuildDiscarderStrategy extends GlobalBuildDiscarderStrategy
Periodically call a job's configured build discarder in the background.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JobGlobalBuildDiscarderStrategy.DescriptorImpl
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description JobGlobalBuildDiscarderStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(Job<?,?> job)
Applies this build discarder strategy to the given job, i.e.boolean
isApplicable(Job<?,?> job)
Returns true if and only if this strategy applies to the given job.-
Methods inherited from class jenkins.model.GlobalBuildDiscarderStrategy
apply
-
Methods inherited from class hudson.model.AbstractDescribableImpl
getDescriptor
-
-
-
-
Method Detail
-
isApplicable
public boolean isApplicable(Job<?,?> job)
Description copied from class:GlobalBuildDiscarderStrategy
Returns true if and only if this strategy applies to the given job.- Specified by:
isApplicable
in classGlobalBuildDiscarderStrategy
- Returns:
- true if and only if this strategy applies to the given job.
-
apply
public void apply(Job<?,?> job) throws IOException, InterruptedException
Description copied from class:GlobalBuildDiscarderStrategy
Applies this build discarder strategy to the given job, i.e. delete builds based on this strategy's configuration. The default implementation callsGlobalBuildDiscarderStrategy.apply(Run)
on each build.- Overrides:
apply
in classGlobalBuildDiscarderStrategy
- Throws:
IOException
InterruptedException
-
-