net.nemerosa.ontrack.job.JobState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-job Show documentation
Show all versions of ontrack-job Show documentation
Abstract management of identified jobs.
package net.nemerosa.ontrack.job
/**
* Global state of a job
*/
enum class JobState(val description: String) {
/**
* Job scheduled, but not running right now.
*/
IDLE("Idle"),
/**
* Job running
*/
RUNNING("Running"),
/**
* Job paused
*/
PAUSED("Paused"),
/**
* Job disabled
*/
DISABLED("Disabled"),
/**
* Job scheduled for deletion
*/
INVALID("Invalid")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy