Package hudson.model
Class TransientViewActionFactory
- java.lang.Object
-
- hudson.model.TransientViewActionFactory
-
- All Implemented Interfaces:
ExtensionPoint
public abstract class TransientViewActionFactory extends Object implements ExtensionPoint
- Since:
- 1.388
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description TransientViewActionFactory()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ExtensionList<TransientViewActionFactory>
all()
Returns all the registeredTransientViewActionFactory
s.static List<Action>
createAllFor(View v)
CreatesAction
s for a view, using all registeredTransientViewActionFactory
s.abstract List<Action>
createFor(View v)
returns a list of (transient) actions never null, may be empty
-
-
-
Method Detail
-
createFor
public abstract List<Action> createFor(View v)
returns a list of (transient) actions never null, may be empty
-
all
public static ExtensionList<TransientViewActionFactory> all()
Returns all the registeredTransientViewActionFactory
s.
-
createAllFor
public static List<Action> createAllFor(View v)
CreatesAction
s for a view, using all registeredTransientViewActionFactory
s.
-
-