
org.rundeck.api.domain.WorkflowStepContextState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rundeck-api-java-client Show documentation
Show all versions of rundeck-api-java-client Show documentation
Java client for the Rundeck REST API
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