javaposse.jobdsl.dsl.helpers.step.StepContext.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of job-dsl-core Show documentation
Show all versions of job-dsl-core Show documentation
Javaposse jenkins job-dsl-core
package javaposse.jobdsl.dsl.helpers.step
import javaposse.jobdsl.dsl.JobType
class StepContext extends AbstractStepContext {
JobType type
StepContext(JobType jobType) {
super()
this.type = jobType
}
StepContext(List stepNodes, JobType jobType) {
super(stepNodes)
this.type = jobType
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy