org.jbpm.sim.kpi.BusinessFigureCalculator Maven / Gradle / Ivy
package org.jbpm.sim.kpi;
import org.jbpm.graph.exe.ExecutionContext;
/**
* Interface to calculate some business figures of a process.
* Implement it to do you what you need!
*
* @author [email protected]
*/
public interface BusinessFigureCalculator {
/**
* This method has to return the calculated figure and can use whatever
* it wants from the execution context
*
* @param executionContext
* @return the calculated business figure
*/
public Number calculate(ExecutionContext executionContext);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy