Package hudson.model
Class TransientBuildActionFactory
- java.lang.Object
-
- hudson.model.TransientBuildActionFactory
-
- All Implemented Interfaces:
ExtensionPoint
@Deprecated public abstract class TransientBuildActionFactory extends Object implements ExtensionPoint
Deprecated.Does not contribute toActionable.getActions()
. UseTransientActionFactory
instead.Extension point for inserting transientAction
s intoRun
s. To register your implementation, putExtension
on your subtype.- Since:
- 1.458
- Author:
- Lucie Votypkova
- See Also:
Action
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description TransientBuildActionFactory()
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ExtensionList<TransientBuildActionFactory>
all()
Deprecated.Returns all the registeredTransientBuildActionFactory
s.Collection<? extends Action>
createFor(AbstractBuild target)
Deprecated.as of 1.461 Override and callcreateFor(Run)
instead.Collection<? extends Action>
createFor(Run target)
Deprecated.Creates actions for the given build.
-
-
-
Method Detail
-
createFor
public Collection<? extends Action> createFor(Run target)
Deprecated.Creates actions for the given build.- Parameters:
target
- for which the action objects are requested. Never null.- Returns:
- Can be empty but must not be null.
-
createFor
@Deprecated public Collection<? extends Action> createFor(AbstractBuild target)
Deprecated.as of 1.461 Override and callcreateFor(Run)
instead.
-
all
public static ExtensionList<TransientBuildActionFactory> all()
Deprecated.Returns all the registeredTransientBuildActionFactory
s.
-
-