Package jenkins.install
Class InstallStateFilter
- java.lang.Object
-
- jenkins.install.InstallStateFilter
-
- All Implemented Interfaces:
ExtensionPoint
public abstract class InstallStateFilter extends Object implements ExtensionPoint
Allows plugging in to the lifecycle when determining InstallState fromInstallUtil.getNextInstallState(InstallState)
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description InstallStateFilter()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static List<InstallStateFilter>
all()
Get all the InstallStateFilters, in extension orderabstract InstallState
getNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed)
Determine the current or next install state, proceed with `return proceed.next()`
-
-
-
Method Detail
-
getNextInstallState
public abstract InstallState getNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed)
Determine the current or next install state, proceed with `return proceed.next()`
-
all
public static List<InstallStateFilter> all()
Get all the InstallStateFilters, in extension order
-
-