Package org.pentaho.di.core.gui
Class JobExecutionHistory
- java.lang.Object
-
- 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
Constructors Constructor Description JobExecutionHistory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,JobEntryExecutionResult>
getExecutionMap()
void
setExecutionMap(Map<String,JobEntryExecutionResult> executionMap)
-
-
-
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
-
-