Package jenkins.install
Class InstallStateFilter
java.lang.Object
jenkins.install.InstallStateFilter
- All Implemented Interfaces:
- ExtensionPoint
Allows plugging in to the lifecycle when determining InstallState
 from 
InstallUtil.getNextInstallState(InstallState)- 
Nested Class SummaryNested classes/interfaces inherited from interface hudson.ExtensionPointExtensionPoint.LegacyInstancesAreScopedToHudson
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic List<InstallStateFilter> all()Get all the InstallStateFilters, in extension orderabstract InstallStategetNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed) Determine the current or next install state, proceed with `return proceed.next()`
- 
Constructor Details- 
InstallStateFilterpublic InstallStateFilter()
 
- 
- 
Method Details- 
getNextInstallStatepublic abstract InstallState getNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed) Determine the current or next install state, proceed with `return proceed.next()`
- 
allGet all the InstallStateFilters, in extension order
 
-