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

ee.ringit.extras.camunda.timeroverride.TimerOverrideConfiguration Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy