io.serverlessworkflow.api.repeat.Repeat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serverlessworkflow-api Show documentation
Show all versions of serverlessworkflow-api Show documentation
Java SDK for Serverless Workflow Specification
package io.serverlessworkflow.api.repeat;
import java.io.Serializable;
import java.util.List;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import jakarta.validation.Valid;
import jakarta.validation.constraints.DecimalMin;
import jakarta.validation.constraints.Size;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"expression",
"checkBefore",
"max",
"continueOnError",
"stopOnEvents"
})
@Generated("jsonschema2pojo")
public class Repeat implements Serializable
{
/**
* Expression evaluated against SubFlow state data. SubFlow will repeat execution as long as this expression is true or until the max property count is reached
*
*/
@JsonProperty("expression")
@JsonPropertyDescription("Expression evaluated against SubFlow state data. SubFlow will repeat execution as long as this expression is true or until the max property count is reached")
@Size(min = 1)
private String expression;
/**
* If true, the expression is evaluated before each repeat execution, if false the expression is evaluated after each repeat execution
*
*/
@JsonProperty("checkBefore")
@JsonPropertyDescription("If true, the expression is evaluated before each repeat execution, if false the expression is evaluated after each repeat execution")
private boolean checkBefore = true;
/**
* Sets the maximum amount of repeat executions
*
*/
@JsonProperty("max")
@JsonPropertyDescription("Sets the maximum amount of repeat executions")
@DecimalMin("0")
private int max;
/**
* If true, repeats executions in a case unhandled errors propagate from the sub-workflow to this state
*
*/
@JsonProperty("continueOnError")
@JsonPropertyDescription("If true, repeats executions in a case unhandled errors propagate from the sub-workflow to this state")
private boolean continueOnError = false;
/**
* List referencing defined consumed workflow events. SubFlow will repeat execution until one of the defined events is consumed, or until the max property count is reached
*
*/
@JsonProperty("stopOnEvents")
@JsonPropertyDescription("List referencing defined consumed workflow events. SubFlow will repeat execution until one of the defined events is consumed, or until the max property count is reached")
@Valid
private List stopOnEvents;
private final static long serialVersionUID = 1851955639467650709L;
/**
* Expression evaluated against SubFlow state data. SubFlow will repeat execution as long as this expression is true or until the max property count is reached
*
*/
@JsonProperty("expression")
public String getExpression() {
return expression;
}
/**
* Expression evaluated against SubFlow state data. SubFlow will repeat execution as long as this expression is true or until the max property count is reached
*
*/
@JsonProperty("expression")
public void setExpression(String expression) {
this.expression = expression;
}
public Repeat withExpression(String expression) {
this.expression = expression;
return this;
}
/**
* If true, the expression is evaluated before each repeat execution, if false the expression is evaluated after each repeat execution
*
*/
@JsonProperty("checkBefore")
public boolean isCheckBefore() {
return checkBefore;
}
/**
* If true, the expression is evaluated before each repeat execution, if false the expression is evaluated after each repeat execution
*
*/
@JsonProperty("checkBefore")
public void setCheckBefore(boolean checkBefore) {
this.checkBefore = checkBefore;
}
public Repeat withCheckBefore(boolean checkBefore) {
this.checkBefore = checkBefore;
return this;
}
/**
* Sets the maximum amount of repeat executions
*
*/
@JsonProperty("max")
public int getMax() {
return max;
}
/**
* Sets the maximum amount of repeat executions
*
*/
@JsonProperty("max")
public void setMax(int max) {
this.max = max;
}
public Repeat withMax(int max) {
this.max = max;
return this;
}
/**
* If true, repeats executions in a case unhandled errors propagate from the sub-workflow to this state
*
*/
@JsonProperty("continueOnError")
public boolean isContinueOnError() {
return continueOnError;
}
/**
* If true, repeats executions in a case unhandled errors propagate from the sub-workflow to this state
*
*/
@JsonProperty("continueOnError")
public void setContinueOnError(boolean continueOnError) {
this.continueOnError = continueOnError;
}
public Repeat withContinueOnError(boolean continueOnError) {
this.continueOnError = continueOnError;
return this;
}
/**
* List referencing defined consumed workflow events. SubFlow will repeat execution until one of the defined events is consumed, or until the max property count is reached
*
*/
@JsonProperty("stopOnEvents")
public List getStopOnEvents() {
return stopOnEvents;
}
/**
* List referencing defined consumed workflow events. SubFlow will repeat execution until one of the defined events is consumed, or until the max property count is reached
*
*/
@JsonProperty("stopOnEvents")
public void setStopOnEvents(List stopOnEvents) {
this.stopOnEvents = stopOnEvents;
}
public Repeat withStopOnEvents(List stopOnEvents) {
this.stopOnEvents = stopOnEvents;
return this;
}
}