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

org.activiti.engine.impl.jobexecutor.DefaultFailedJobCommandFactory Maven / Gradle / Ivy

The newest version!
package org.activiti.engine.impl.jobexecutor;

import org.activiti.engine.impl.cmd.DecrementJobRetriesCmd;
import org.activiti.engine.impl.interceptor.Command;


public class DefaultFailedJobCommandFactory implements FailedJobCommandFactory {

  public Command getCommand(String jobId, Throwable exception) {
    return new DecrementJobRetriesCmd(jobId, exception);
  }

}