Uses of Class
jenkins.install.InstallState
-
Packages that use InstallState Package Description jenkins.install jenkins.model -
-
Uses of InstallState in jenkins.install
Fields in jenkins.install declared as InstallState Modifier and Type Field Description static InstallState
InstallState. CONFIGURE_INSTANCE
static InstallState
InstallState. CREATE_ADMIN_USER
Creating an admin user for an initial Jenkins install.static InstallState
InstallState. DEVELOPMENT
Jenkins started in development mode: Boolean.getBoolean("hudson.Main.development").static InstallState
InstallState. DOWNGRADE
Downgrade of an existing Jenkins install.static InstallState
InstallState. INITIAL_PLUGINS_INSTALLING
New Jenkins install.static InstallState
InstallState. INITIAL_SECURITY_SETUP
Security setup for a new Jenkins install.static InstallState
InstallState. INITIAL_SETUP_COMPLETED
The initial set up has been completedstatic InstallState
InstallState. NEW
New Jenkins install.static InstallState
InstallState. RESTART
Restart of an existing Jenkins install.static InstallState
InstallState. RUNNING
After any setup / restart / etc.static InstallState
InstallState. TEST
Jenkins started in test mode (JenkinsRule).static InstallState
InstallState. UNKNOWN
Need InstallState != NEW for tests by defaultstatic InstallState
InstallState. UPGRADE
Upgrade of an existing Jenkins install.Methods in jenkins.install that return InstallState Modifier and Type Method Description InstallState
SetupWizard. getInstallState(String name)
Returns an installState by nameabstract InstallState
InstallStateFilter. getNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed)
Determine the current or next install state, proceed with `return proceed.next()`static InstallState
InstallState. valueOf(String name)
Find an install state by nameMethods in jenkins.install that return types with arguments of type InstallState Modifier and Type Method Description List<InstallState>
SetupWizard. getInstallStates()
Gets all the install statesMethods in jenkins.install with parameters of type InstallState Modifier and Type Method Description abstract InstallState
InstallStateFilter. getNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed)
Determine the current or next install state, proceed with `return proceed.next()`void
SetupWizard. onInstallStateUpdate(InstallState state)
Called upon install state update.static void
InstallUtil. proceedToNextStateFrom(InstallState prior)
Proceed to the state following the provided oneMethod parameters in jenkins.install with type arguments of type InstallState Modifier and Type Method Description abstract InstallState
InstallStateFilter. getNextInstallState(InstallState current, jakarta.inject.Provider<InstallState> proceed)
Determine the current or next install state, proceed with `return proceed.next()` -
Uses of InstallState in jenkins.model
Methods in jenkins.model that return InstallState Modifier and Type Method Description InstallState
Jenkins. getInstallState()
Get the Jenkinsinstall state
.Methods in jenkins.model with parameters of type InstallState Modifier and Type Method Description void
Jenkins. setInstallState(InstallState newState)
Update the current install state.
-