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

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

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

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

public interface FailedJobCommandFactory {
	
	public Command getCommand(String jobId, Throwable exception);

}