All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javaposse.jobdsl.dsl.helpers.step.StepContext.groovy Maven / Gradle / Ivy

There is a newer version: 1.22-rxd-2
Show newest version
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