Package hudson.model
Class BuildStepListener
- java.lang.Object
-
- hudson.model.BuildStepListener
-
- All Implemented Interfaces:
ExtensionPoint
public abstract class BuildStepListener extends Object implements ExtensionPoint
Receives events that happen as a build executesBuildStep
s.- Since:
- 1.502
- Author:
- Nicolas De Loof
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description BuildStepListener()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ExtensionList<BuildStepListener>
all()
Returns all the registeredBuildStepListener
s.abstract void
finished(AbstractBuild build, BuildStep bs, BuildListener listener, boolean canContinue)
Called when a buildStep has completed.abstract void
started(AbstractBuild build, BuildStep bs, BuildListener listener)
Called when a buildStep is performed.
-
-
-
Method Detail
-
started
public abstract void started(AbstractBuild build, BuildStep bs, BuildListener listener)
Called when a buildStep is performed.
-
finished
public abstract void finished(AbstractBuild build, BuildStep bs, BuildListener listener, boolean canContinue)
Called when a buildStep has completed.
-
all
public static ExtensionList<BuildStepListener> all()
Returns all the registeredBuildStepListener
s.
-
-