Package jenkins.model
Interface RunAction2
-
- All Superinterfaces:
Action
,ModelObject
- All Known Implementing Classes:
AbstractScmTagAction
,CauseAction
,Fingerprinter.FingerprintAction
,ParametersAction
,SCMTrigger.BuildAction
public interface RunAction2 extends Action
Optional interface forAction
s that add themselves to aRun
. You may keep atransient
reference to an owning build, restored inonLoad(hudson.model.Run<?, ?>)
.- Since:
- 1.519, 1.509.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onAttached(Run<?,?> r)
Called when this action is added to a build.void
onLoad(Run<?,?> r)
Called after a build is loaded to which this action was previously attached.-
Methods inherited from interface hudson.model.Action
getDisplayName, getIconFileName, getUrlName
-
-
-
-
Method Detail
-
onAttached
void onAttached(Run<?,?> r)
Called when this action is added to a build.
-
onLoad
void onLoad(Run<?,?> r)
Called after a build is loaded to which this action was previously attached.
-
-