org.pentaho.di.core.gui
Class JobExecutionHistory

java.lang.Object
  extended by org.pentaho.di.core.gui.JobExecutionHistory

public class JobExecutionHistory
extends Object

This class is responsible for keeping track of the execution of a job. It does this by keeping a Map in memory. This map has the Unique job entry name has key. The value stored in there includes: - The execution state (waiting, running, finished) - The

Author:
matt

Constructor Summary
JobExecutionHistory()
           
 
Method Summary
 Map<String,JobEntryExecutionResult> getExecutionMap()
           
 void setExecutionMap(Map<String,JobEntryExecutionResult> executionMap)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JobExecutionHistory

public JobExecutionHistory()
Method Detail

getExecutionMap

public Map<String,JobEntryExecutionResult> getExecutionMap()
Returns:
the executionMap

setExecutionMap

public void setExecutionMap(Map<String,JobEntryExecutionResult> executionMap)
Parameters:
executionMap - the executionMap to set