io.logz.sawmill.ConditionalExecutionStep Maven / Gradle / Ivy
The newest version!
package io.logz.sawmill;
import java.util.List;
public class ConditionalExecutionStep implements ExecutionStep {
private Condition condition;
private List onTrue;
private List onFalse;
public ConditionalExecutionStep(Condition condition, List onTrue, List onFalse) {
this.condition = condition;
this.onTrue = onTrue;
this.onFalse = onFalse;
}
public Condition getCondition() {
return condition;
}
public List getOnTrue() {
return onTrue;
}
public List getOnFalse() {
return onFalse;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy