ee.ringit.extras.camunda.timeroverride.TimerOverrideConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timer-override-plugin Show documentation
Show all versions of timer-override-plugin Show documentation
A Spring Boot starter for Camunda Process Engine Timer Override Plugin
package ee.ringit.extras.camunda.timeroverride;
import org.camunda.bpm.engine.impl.jobexecutor.TimerDeclarationType;
import java.util.*;
public class TimerOverrideConfiguration {
private final Set excludedTimers = new HashSet<>();
private final Map customTimerExpressions = new HashMap<>();
private final Map defaultTimerExpressions = new EnumMap<>(TimerDeclarationType.class);
public Set getExcludedTimers() {
return excludedTimers;
}
public Map getCustomTimerExpressions() {
return customTimerExpressions;
}
public Map getDefaultTimerExpressions() {
return defaultTimerExpressions;
}
}