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

org.jbpm.sim.kpi.BusinessFigureCalculator Maven / Gradle / Ivy

There is a newer version: 3.2.19.ayg
Show newest version
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