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

org.rundeck.api.domain.WorkflowStepContextState Maven / Gradle / Ivy

There is a newer version: 13.2
Show newest version
package org.rundeck.api.domain;

/**
 * A state for a particular step
 */
public class WorkflowStepContextState extends BaseState {
    private String stepContextId;
    private int stepNum;

    /**
     * The context id for the step in the form "#[/#[/#[...]]]" where "#" is a number
     * @return
     */
    public String getStepContextId() {
        return stepContextId;
    }

    public void setStepContextId(String stepContextId) {
        this.stepContextId = stepContextId;
    }

    /**
     * The step number of this step in the current workflow, 1 indexed.
     * @return
     */
    public int getStepNum() {
        return stepNum;
    }

    public void setStepNum(int stepNum) {
        this.stepNum = stepNum;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy