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

org.camunda.bpm.engine.impl.batch.SetRetriesBatchConfiguration Maven / Gradle / Ivy

There is a newer version: 7.9.0-alpha4
Show newest version
package org.camunda.bpm.engine.impl.batch;

import java.util.List;

public class SetRetriesBatchConfiguration extends BatchConfiguration {

  protected int retries;
  
  public SetRetriesBatchConfiguration(List ids, int retries) {
    super(ids);
    this.retries = retries;
  }
  
  public int getRetries() {
    return retries;
  }

  public void setRetries(int retries) {
    this.retries = retries;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy