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

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

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

import org.camunda.bpm.engine.impl.persistence.entity.ByteArrayEntity;

/**
 * @author Askar Akhmerov
 */
public class BatchJobContext {
  public BatchJobContext(BatchEntity batchEntity, ByteArrayEntity configuration) {
    this.batch = batchEntity;
    this.configuration = configuration;
  }

  protected BatchEntity batch;
  protected ByteArrayEntity configuration;

  public BatchEntity getBatch() {
    return batch;
  }

  public void setBatch(BatchEntity batch) {
    this.batch = batch;
  }

  public ByteArrayEntity getConfiguration() {
    return configuration;
  }

  public void setConfiguration(ByteArrayEntity configuration) {
    this.configuration = configuration;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy