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 executes BuildStep
s.
- Since:
- 1.502
- Author:
- Nicolas De Loof
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BuildStepListener
public BuildStepListener()
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 registered
BuildStepListener
s.
Copyright © 2004-2013. All Rights Reserved.